You've already forked linux-packaging-mono
Imported Upstream version 6.6.0.89
Former-commit-id: b39a328747c2f3414dc52e009fb6f0aa80ca2492
This commit is contained in:
parent
cf815e07e0
commit
95fdb59ea6
@@ -2,6 +2,7 @@ thisdir = tools
|
||||
|
||||
net_4_5_dirs := \
|
||||
al \
|
||||
aprofutil \
|
||||
linker \
|
||||
culevel \
|
||||
genxs \
|
||||
@@ -53,7 +54,7 @@ net_4_5_dirs := \
|
||||
build_SUBDIRS =
|
||||
build_PARALLEL_SUBDIRS := resgen gacutil security culevel upload-to-sentry mono-helix-client commoncryptogenerator resx2sr linker cil-strip corcompare mono-api-diff mono-api-html
|
||||
monodroid_tools_SUBDIRS =
|
||||
monodroid_tools_PARALLEL_SUBDIRS = cil-strip linker-analyzer mkbundle mdoc mono-symbolicate corcompare mono-api-diff mono-api-html pdb2mdb nunit-lite
|
||||
monodroid_tools_PARALLEL_SUBDIRS = aprofutil cil-strip linker-analyzer mkbundle mdoc mono-symbolicate corcompare mono-api-diff mono-api-html pdb2mdb nunit-lite
|
||||
monodroid_SUBDIRS = nunit-lite
|
||||
monotouch_SUBDIRS = nunit-lite
|
||||
monotouch_tv_SUBDIRS = nunit-lite
|
||||
|
8
mcs/tools/aprofutil/Makefile
Normal file
8
mcs/tools/aprofutil/Makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
thisdir = tools/aprofutil
|
||||
include ../../build/rules.make
|
||||
|
||||
PROGRAM = aprofutil.exe
|
||||
|
||||
LIB_REFS = System System.Core Mono.Profiler.Log
|
||||
|
||||
include ../../build/executable.make
|
299
mcs/tools/aprofutil/Program.cs
Normal file
299
mcs/tools/aprofutil/Program.cs
Normal file
@@ -0,0 +1,299 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Net.Sockets;
|
||||
using System.Text.RegularExpressions;
|
||||
using Mono.Options;
|
||||
using Mono.Profiler.Aot;
|
||||
|
||||
using static System.Console;
|
||||
|
||||
namespace aotprofiletool {
|
||||
class MainClass {
|
||||
static readonly string Name = "aotprofile-tool";
|
||||
|
||||
static bool AdbForward;
|
||||
static bool Methods;
|
||||
static bool Modules;
|
||||
static bool Summary;
|
||||
static bool Types;
|
||||
static bool Verbose;
|
||||
|
||||
static Regex FilterMethod;
|
||||
static Regex FilterModule;
|
||||
static Regex FilterType;
|
||||
|
||||
static string Output;
|
||||
|
||||
static int Port = -1;
|
||||
|
||||
static string ProcessArguments (string [] args)
|
||||
{
|
||||
var help = false;
|
||||
var options = new OptionSet {
|
||||
$"Usage: {Name}.exe OPTIONS* <aotprofile-file>",
|
||||
"",
|
||||
"Processes AOTPROFILE files created by Mono's AOT Profiler",
|
||||
"",
|
||||
"Copyright 2019 Microsoft Corporation",
|
||||
"",
|
||||
"Options:",
|
||||
{ "h|help|?",
|
||||
"Show this message and exit",
|
||||
v => help = v != null },
|
||||
{ "a|all",
|
||||
"Show modules, types and methods in the profile",
|
||||
v => Modules = Types = Methods = true },
|
||||
{ "d|modules",
|
||||
"Show modules in the profile",
|
||||
v => Modules = true },
|
||||
{ "f|adb-forward",
|
||||
"Set adb socket forwarding for Android",
|
||||
v => AdbForward = true },
|
||||
{ "filter-method=",
|
||||
"Filter by method with regex {VALUE}",
|
||||
v => FilterMethod = new Regex (v) },
|
||||
{ "filter-module=",
|
||||
"Filter by module with regex {VALUE}",
|
||||
v => FilterModule = new Regex (v) },
|
||||
{ "filter-type=",
|
||||
"Filter by type with regex {VALUE}",
|
||||
v => FilterType = new Regex (v) },
|
||||
{ "m|methods",
|
||||
"Show methods in the profile",
|
||||
v => Methods = true },
|
||||
{ "o|output=",
|
||||
"Write profile to {OUTPUT} file",
|
||||
v => Output = v },
|
||||
{ "p|port=",
|
||||
"Read profile from aot profiler using local connection on {PORT}",
|
||||
v => int.TryParse (v, out Port) },
|
||||
{ "s|summary",
|
||||
"Show summary of the profile",
|
||||
v => Summary = true },
|
||||
{ "t|types",
|
||||
"Show types in the profile",
|
||||
v => Types = true },
|
||||
{ "v|verbose",
|
||||
"Output information about progress during the run of the tool",
|
||||
v => Verbose = true },
|
||||
"",
|
||||
"If no other option than -v is used then --all is used by default"
|
||||
};
|
||||
|
||||
var remaining = options.Parse (args);
|
||||
|
||||
if (help || args.Length < 1) {
|
||||
options.WriteOptionDescriptions (Out);
|
||||
|
||||
Environment.Exit (0);
|
||||
}
|
||||
|
||||
if (remaining.Count != 1 && Port < 0) {
|
||||
Error ("Please specify one <aotprofile-file> to process or network PORT with -p.");
|
||||
Environment.Exit (2);
|
||||
}
|
||||
|
||||
return remaining.Count > 0 ? remaining [0] : null;
|
||||
}
|
||||
|
||||
static ProfileData ReadProfileFromPort (ProfileReader reader)
|
||||
{
|
||||
ProfileData pd;
|
||||
|
||||
if (AdbForward) {
|
||||
var cmdArgs = $"forward tcp:{Port} tcp:{Port}";
|
||||
if (Verbose)
|
||||
ColorWriteLine ($"Calling 'adb {cmdArgs}'...", ConsoleColor.Yellow);
|
||||
|
||||
System.Diagnostics.Process.Start ("adb", cmdArgs);
|
||||
}
|
||||
|
||||
using (var client = new TcpClient ("127.0.0.1", Port)) {
|
||||
using (var stream = client.GetStream ()) {
|
||||
var msgData = System.Text.Encoding.ASCII.GetBytes ("save\n");
|
||||
|
||||
stream.Write (msgData, 0, msgData.Length);
|
||||
|
||||
if (Verbose)
|
||||
ColorWriteLine ($"Reading from '127.0.0.1:{Port}'...", ConsoleColor.Yellow);
|
||||
|
||||
using (var memoryStream = new MemoryStream (128 * 1024)) {
|
||||
var data = new byte [4 * 1024];
|
||||
int len;
|
||||
|
||||
while ((len = stream.Read (data, 0, data.Length)) > 0) {
|
||||
memoryStream.Write (data, 0, len);
|
||||
|
||||
if (Verbose)
|
||||
ColorWrite ($"Read {len} bytes...\r", ConsoleColor.Yellow);
|
||||
}
|
||||
|
||||
if (Verbose)
|
||||
ColorWriteLine ($"Read total {memoryStream.Length} bytes...", ConsoleColor.Yellow);
|
||||
|
||||
memoryStream.Seek (0, SeekOrigin.Begin);
|
||||
|
||||
pd = reader.ReadAllData (memoryStream);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return pd;
|
||||
}
|
||||
|
||||
public static void Main (string [] args)
|
||||
{
|
||||
var path = ProcessArguments (args);
|
||||
|
||||
if (args.Length == 1) {
|
||||
Modules = Types = Methods = true;
|
||||
}
|
||||
|
||||
var reader = new ProfileReader ();
|
||||
ProfileData pd = null;
|
||||
|
||||
if (path == null) {
|
||||
if (Port < 0) {
|
||||
Error ($"You should specify path or -p PORT to read the profile.");
|
||||
Environment.Exit (4);
|
||||
} else {
|
||||
try {
|
||||
pd = ReadProfileFromPort (reader);
|
||||
} catch (Exception e) {
|
||||
Error ($"Unable to read profile through local port: {Port}.\n{e}");
|
||||
Environment.Exit (5);
|
||||
}
|
||||
}
|
||||
} else if (!File.Exists (path)) {
|
||||
Error ($"'{path}' doesn't exist.");
|
||||
Environment.Exit (3);
|
||||
} else {
|
||||
using (var stream = new FileStream (path, FileMode.Open)) {
|
||||
if (Verbose)
|
||||
ColorWriteLine ($"Reading '{path}'...", ConsoleColor.Yellow);
|
||||
|
||||
pd = reader.ReadAllData (stream);
|
||||
}
|
||||
}
|
||||
|
||||
List<MethodRecord> methods = new List<MethodRecord> (pd.Methods);
|
||||
ICollection<TypeRecord> types = new List<TypeRecord> (pd.Types);
|
||||
ICollection<ModuleRecord> modules = new List<ModuleRecord> (pd.Modules);
|
||||
|
||||
if (FilterMethod != null || FilterType != null || FilterModule != null) {
|
||||
methods = new List<MethodRecord> ();
|
||||
types = new HashSet<TypeRecord> ();
|
||||
modules = new HashSet<ModuleRecord> ();
|
||||
|
||||
foreach (var method in pd.Methods) {
|
||||
|
||||
var type = method.Type;
|
||||
var module = type.Module;
|
||||
|
||||
if (FilterModule != null) {
|
||||
var match = FilterModule.Match (module.ToString ());
|
||||
|
||||
if (!match.Success)
|
||||
continue;
|
||||
}
|
||||
|
||||
if (FilterType != null) {
|
||||
var match = FilterType.Match (method.Type.ToString ());
|
||||
|
||||
if (!match.Success)
|
||||
continue;
|
||||
}
|
||||
|
||||
if (FilterMethod != null) {
|
||||
var match = FilterMethod.Match (method.ToString ());
|
||||
|
||||
if (!match.Success)
|
||||
continue;
|
||||
}
|
||||
|
||||
methods.Add (method);
|
||||
types.Add (type);
|
||||
modules.Add (module);
|
||||
}
|
||||
}
|
||||
|
||||
if (FilterMethod == null && FilterType != null) {
|
||||
foreach (var type in pd.Types) {
|
||||
if (types.Contains (type))
|
||||
continue;
|
||||
|
||||
var match = FilterType.Match (type.ToString ());
|
||||
|
||||
if (!match.Success)
|
||||
continue;
|
||||
|
||||
types.Add (type);
|
||||
}
|
||||
}
|
||||
|
||||
if (Modules) {
|
||||
ColorWriteLine ($"Modules:", ConsoleColor.Green);
|
||||
|
||||
foreach (var module in modules)
|
||||
WriteLine ($"\t{module.Mvid} {module.ToString ()}");
|
||||
}
|
||||
|
||||
if (Types) {
|
||||
ColorWriteLine ($"Types:", ConsoleColor.Green);
|
||||
|
||||
foreach (var type in types)
|
||||
WriteLine ($"\t{type}");
|
||||
}
|
||||
|
||||
if (Methods) {
|
||||
ColorWriteLine ($"Methods:", ConsoleColor.Green);
|
||||
|
||||
foreach (var method in methods)
|
||||
WriteLine ($"\t{method}");
|
||||
}
|
||||
|
||||
if (Summary) {
|
||||
ColorWriteLine ($"Summary:", ConsoleColor.Green);
|
||||
WriteLine ($"\tModules: {modules.Count.ToString ("N0"),10}{(modules.Count != pd.Modules.Length ? $" (of {pd.Modules.Length})" : "" )}");
|
||||
WriteLine ($"\tTypes: {types.Count.ToString ("N0"),10}{(types.Count != pd.Types.Length ? $" (of {pd.Types.Length})" : "")}");
|
||||
WriteLine ($"\tMethods: {methods.Count.ToString ("N0"),10}{(methods.Count != pd.Methods.Length ? $" (of {pd.Methods.Length})" : "")}");
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty (Output)) {
|
||||
if (Verbose)
|
||||
ColorWriteLine ($"Going to write the profile to '{Output}'", ConsoleColor.Yellow);
|
||||
var modulesArray = new ModuleRecord [modules.Count];
|
||||
modules.CopyTo (modulesArray, 0);
|
||||
var typesArray = new TypeRecord [types.Count];
|
||||
types.CopyTo (typesArray, 0);
|
||||
var updatedPD = new ProfileData (modulesArray, typesArray, methods.ToArray ());
|
||||
|
||||
using (var stream = new FileStream (Output, FileMode.Create)) {
|
||||
var writer = new ProfileWriter ();
|
||||
writer.WriteAllData (stream, updatedPD);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void ColorMessage (string message, ConsoleColor color, TextWriter writer, bool writeLine = true)
|
||||
{
|
||||
ForegroundColor = color;
|
||||
|
||||
if (writeLine)
|
||||
writer.WriteLine (message);
|
||||
else
|
||||
writer.Write (message);
|
||||
|
||||
ResetColor ();
|
||||
}
|
||||
|
||||
public static void ColorWriteLine (string message, ConsoleColor color) => ColorMessage (message, color, Out);
|
||||
|
||||
public static void ColorWrite (string message, ConsoleColor color) => ColorMessage (message, color, Out, false);
|
||||
|
||||
public static void Error (string message) => ColorMessage ($"Error: {Name}: {message}", ConsoleColor.Red, Console.Error);
|
||||
|
||||
public static void Warning (string message) => ColorMessage ($"Warning: {Name}: {message}", ConsoleColor.Yellow, Console.Error);
|
||||
}
|
||||
}
|
2
mcs/tools/aprofutil/aprofutil.exe.sources
Normal file
2
mcs/tools/aprofutil/aprofutil.exe.sources
Normal file
@@ -0,0 +1,2 @@
|
||||
Program.cs
|
||||
../../class/Mono.Options/Mono.Options/Options.cs
|
@@ -586,9 +586,9 @@ namespace Mono.ApiTools {
|
||||
|
||||
writer.WriteStartElement ("generic-parameter-constraints");
|
||||
|
||||
foreach (TypeReference constraint in constraints) {
|
||||
foreach (GenericParameterConstraint constraint in constraints) {
|
||||
writer.WriteStartElement ("generic-parameter-constraint");
|
||||
writer.WriteAttributeString ("name", Utils.CleanupTypeName (constraint));
|
||||
writer.WriteAttributeString ("name", Utils.CleanupTypeName (constraint.ConstraintType));
|
||||
writer.WriteEndElement (); // generic-parameter-constraint
|
||||
}
|
||||
|
||||
|
@@ -109,7 +109,8 @@ BINARY_TEST_CASES_ROOT:=../../../external/illinker-test-assets/wasm/
|
||||
BINARY_TEST_CASES = \
|
||||
$(BINARY_TEST_CASES_ROOT)Newtonsoft/bin/Release/netstandard2.0/dist/_framework/_bin/Newtonsoft.dll \
|
||||
$(BINARY_TEST_CASES_ROOT)HelloWorld/bin/Release/netstandard2.0/dist/_framework/_bin/HelloWorld.dll \
|
||||
$(BINARY_TEST_CASES_ROOT)Microsoft.AspNetCore.Blazor.E2EPerformance/bin/Release/netstandard2.0/Microsoft.AspNetCore.Blazor.E2EPerformance.dll
|
||||
$(BINARY_TEST_CASES_ROOT)Microsoft.AspNetCore.Blazor.E2EPerformance/bin/Release/netstandard2.0/Microsoft.AspNetCore.Blazor.E2EPerformance.dll \
|
||||
$(BINARY_TEST_CASES_ROOT)BlazingPizza.Client/bin/Release/netstandard2.0/BlazingPizza.Client.dll
|
||||
endif
|
||||
|
||||
LINKER_OUTPUT := illink-output-$(PROFILE_DIRECTORY)
|
||||
|
@@ -29,6 +29,7 @@
|
||||
../../../external/linker/src/linker/Linker/TypeReferenceExtensions.cs
|
||||
../../../external/linker/src/linker/Linker/XApiReader.cs
|
||||
../../../external/linker/src/linker/Linker.Steps/BaseStep.cs
|
||||
../../../external/linker/src/linker/Linker.Steps/ClearInitLocals.cs
|
||||
../../../external/linker/src/linker/Linker.Steps/LoadReferencesStep.cs
|
||||
../../../external/linker/src/linker/Linker.Steps/LoadI18nAssemblies.cs
|
||||
../../../external/linker/src/linker/Linker.Steps/ResolveFromXmlStep.cs
|
||||
|
@@ -21,7 +21,7 @@ MONODOC_RESOURCES_COMMAND = $(foreach file,$(MONODOC_RESOURCES),/resource:../../
|
||||
|
||||
LIB_REFS = monodoc System System.Xml System.Core Mono.Cecil ICSharpCode.SharpZipLib System.Xml.Linq System.Web
|
||||
|
||||
LOCAL_MCS_FLAGS = $(MDOC_RESOURCES_COMMAND) $(MONODOC_RESOURCES_COMMAND)
|
||||
LOCAL_MCS_FLAGS = $(MDOC_RESOURCES_COMMAND) $(MONODOC_RESOURCES_COMMAND) -define:NEW_CECIL
|
||||
PROGRAM = $(topdir)/class/lib/$(PROFILE)/mdoc.exe
|
||||
PROGRAM_DEPS = $(topdir)/class/lib/$(PROFILE)/monodoc.dll
|
||||
MSCORLIB = -r:$(topdir)/class/lib/$(PROFILE)/mscorlib.dll
|
||||
@@ -44,6 +44,12 @@ $(PROGRAM): $(PROGRAM_DEPS)
|
||||
|
||||
PROGRAM_COMPILE = $(CSCOMPILE)
|
||||
|
||||
ifdef MCS_MODE
|
||||
NO_INSTALL=1
|
||||
NO_BUILD=1
|
||||
NO_TEST=1
|
||||
endif
|
||||
|
||||
include ../../build/executable.make
|
||||
|
||||
MONO = \
|
||||
@@ -57,11 +63,6 @@ DIFF = diff -rupZ
|
||||
DIFF_QUIET = diff --brief -Z
|
||||
endif
|
||||
|
||||
ifdef MCS_MODE
|
||||
DIFF = echo "WARNING: running in mcs mode, tests are specific to roslyn and would fail. Skipping diff check."
|
||||
DIFF_QUIET = $(DIFF)
|
||||
endif
|
||||
|
||||
dist-local: dist-default dist-tests
|
||||
|
||||
dist-tests:
|
||||
@@ -86,11 +87,11 @@ Test/DocTest-addNonGeneric-v2.dll:
|
||||
|
||||
Test/DocTest-DropNS-classic-secondary.dll:
|
||||
@echo $(value @)
|
||||
$(CSCOMPILE) $(TEST_CSCFLAGS) $(MSCORLIB) -unsafe -target:library -out:$@ Test/DocTest-DropNS-classic-secondary.cs
|
||||
$(CSCOMPILE) $(TEST_CSCFLAGS) $(MSCORLIB) -unsafe -target:library -out:$@ Test/DocTest-DropNS-classic-secondary.cs -doc:Test/DocTest-DropNS-classic-secondary.xml
|
||||
|
||||
Test/DocTest-DropNS-classic.dll:
|
||||
@echo $(value @)
|
||||
$(CSCOMPILE) $(TEST_CSCFLAGS) $(MSCORLIB) -unsafe -target:library -out:$@ Test/DocTest-DropNS-classic.cs
|
||||
$(CSCOMPILE) $(TEST_CSCFLAGS) $(MSCORLIB) -unsafe -target:library -out:$@ Test/DocTest-DropNS-classic.cs -doc:Test/DocTest-DropNS-classic.xml
|
||||
|
||||
Test/DocTest-DropNS-unified.dll:
|
||||
$(CSCOMPILE) $(TEST_CSCFLAGS) $(MSCORLIB) -unsafe -target:library -out:$@ Test/DocTest-DropNS-unified.cs
|
||||
@@ -134,7 +135,7 @@ Test/DocTest.dll-v1:
|
||||
Test/DocTest.dll-v2:
|
||||
-rm -f Test/DocTest.cs
|
||||
cp Test/DocTest-v1.cs Test/DocTest.cs
|
||||
cd Test && patch --binary -p0 < DocTest-v2.patch
|
||||
cd Test && patch -p0 < DocTest-v2.patch
|
||||
-rm -f Test/DocTest.dll
|
||||
$(MAKE) TEST_CSCFLAGS=$(TEST_CSCFLAGS) Test/DocTest.dll
|
||||
|
||||
@@ -145,20 +146,20 @@ check-monodocer-addNonGeneric: $(PROGRAM)
|
||||
-rm -Rf Test/en.actual
|
||||
# first, make a docset with the generic method
|
||||
$(MAKE) Test/DocTest-addNonGeneric.dll
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-addNonGeneric.dll
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-addNonGeneric.dll
|
||||
|
||||
# now add a non-generic version of the method and update several times
|
||||
$(MAKE) Test/DocTest-addNonGeneric-v2.dll
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
|
||||
$(DIFF) Test/en.expected-addNonGeneric Test/en.actual
|
||||
|
||||
check-monodocer-dropns-classic: $(PROGRAM)
|
||||
# tests the simplest --dropns case, a single class where the root namespace was dropped.
|
||||
-rm -Rf Test/en.actual
|
||||
$(MAKE) Test/DocTest-DropNS-classic.dll
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic.dll --api-style=classic
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-classic.dll --api-style=classic
|
||||
$(MAKE) update-monodocer-dropns-unified
|
||||
$(DIFF) Test/en.expected-dropns-classic-v1 Test/en.actual
|
||||
|
||||
@@ -170,12 +171,12 @@ check-monodocer-dropns-multi: $(PROGRAM)
|
||||
$(MAKE) Test/DocTest-DropNS-unified-multitest.dll
|
||||
|
||||
# mdoc update for both classic and unified
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
|
||||
|
||||
# now run it again to verify idempotency
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
|
||||
|
||||
$(DIFF) Test/en.expected-dropns-multi Test/en.actual
|
||||
|
||||
@@ -188,130 +189,132 @@ check-monodocer-dropns-multi-withexisting: $(PROGRAM)
|
||||
$(MAKE) Test/DocTest-DropNS-unified-multitest.dll
|
||||
|
||||
# mdoc update to show a pre-existing set of documents
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic.dll --api-style=classic
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-unified.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-classic.dll --api-style=classic
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-unified.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
|
||||
|
||||
# mdoc update for both classic and unified
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
|
||||
|
||||
$(DIFF) Test/en.expected-dropns-multi-withexisting Test/en.actual
|
||||
|
||||
check-monodocer-dropns-delete: $(PROGRAM)
|
||||
-rm -Rf Test/en.actual
|
||||
-rm -Rf Test/actual_statistics.txt
|
||||
rm -Rf Test/DocTest-DropNS-classic-deletetest.dll
|
||||
rm -Rf Test/DocTest-DropNS-unified-deletetest.dll
|
||||
$(MAKE) Test/DocTest-DropNS-classic-deletetest.dll
|
||||
$(MONO) $(PROGRAM) update --delete --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic-deletetest.dll --api-style=classic
|
||||
$(MONO) $(PROGRAM) update --delete -o Test/en.actual Test/DocTest-DropNS-classic-deletetest.dll --api-style=classic
|
||||
$(MAKE) Test/DocTest-DropNS-unified-deletetest.dll
|
||||
$(MONO) $(PROGRAM) update --delete --exceptions=all -o Test/en.actual Test/DocTest-DropNS-unified-deletetest.dll --api-style=unified --dropns Test/DocTest-DropNS-unified-deletetest.dll=MyFramework
|
||||
$(MONO) $(PROGRAM) update --delete -o Test/en.actual Test/DocTest-DropNS-unified-deletetest.dll --api-style=unified --dropns Test/DocTest-DropNS-unified-deletetest.dll=MyFramework
|
||||
$(MAKE) Test/DocTest-DropNS-classic-deletetest-V2.dll
|
||||
$(MONO) $(PROGRAM) update --delete --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic-deletetest.dll --api-style=classic
|
||||
$(MONO) $(PROGRAM) update --delete -o Test/en.actual Test/DocTest-DropNS-classic-deletetest.dll --api-style=classic
|
||||
$(MAKE) Test/DocTest-DropNS-unified-deletetest-V2.dll
|
||||
$(MONO) $(PROGRAM) update --delete --exceptions=all -o Test/en.actual Test/DocTest-DropNS-unified-deletetest.dll --api-style=unified --dropns Test/DocTest-DropNS-unified-deletetest.dll=MyFramework
|
||||
$(MONO) $(PROGRAM) update --delete -o Test/en.actual Test/DocTest-DropNS-unified-deletetest.dll --api-style=unified --dropns Test/DocTest-DropNS-unified-deletetest.dll=MyFramework -statistics Test/actual_statistics.txt
|
||||
$(DIFF) Test/en.expected-dropns-delete Test/en.actual
|
||||
$(DIFF) Test/expected_remove_statistics.txt Test/actual_statistics.txt
|
||||
|
||||
check-monodocer-dropns-classic-withsecondary: $(PROGRAM)
|
||||
# tests case where a secondary assembly is included with a --dropns parameter
|
||||
-rm -Rf Test/en.actual
|
||||
$(MAKE) Test/DocTest-DropNS-classic.dll
|
||||
$(MAKE) Test/DocTest-DropNS-classic-secondary.dll
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic.dll Test/DocTest-DropNS-classic-secondary.dll --api-style=classic
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-classic.dll Test/DocTest-DropNS-classic-secondary.dll --api-style=classic
|
||||
$(MAKE) update-monodocer-dropns-unified-withsecondary
|
||||
$(DIFF) Test/en.expected-dropns-classic-withsecondary Test/en.actual
|
||||
|
||||
update-monodocer-dropns-unified: $(PROGRAM)
|
||||
$(MAKE) Test/DocTest-DropNS-unified.dll
|
||||
$(MONO) $(PROGRAM) update --debug --exceptions=all -o Test/en.actual Test/DocTest-DropNS-unified.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
|
||||
$(MONO) $(PROGRAM) update --debug -o Test/en.actual Test/DocTest-DropNS-unified.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
|
||||
|
||||
update-monodocer-dropns-unified-withsecondary: $(PROGRAM)
|
||||
$(MAKE) Test/DocTest-DropNS-unified.dll
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-unified.dll Test/DocTest-DropNS-classic-secondary.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-unified.dll Test/DocTest-DropNS-classic-secondary.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
|
||||
|
||||
update-monodocer-dropns-classic-secondary: $(PROGRAM)
|
||||
$(MAKE) Test/DocTest-DropNS-classic-secondary.dll
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic-secondary.dll --api-style=classic
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-classic-secondary.dll --api-style=classic
|
||||
|
||||
check-monodocer-internal-interface: $(PROGRAM)
|
||||
# Tests to make sure internal interfaces that are explicitly implemented are not documented
|
||||
-rm -Rf Test/en.actual
|
||||
$(MAKE) Test/DocTest-InternalInterface.dll
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-InternalInterface.dll
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-InternalInterface.dll -lang VB.NET
|
||||
$(DIFF) Test/en.expected-internal-interface Test/en.actual
|
||||
|
||||
check-monodocer-enumerations: $(PROGRAM)
|
||||
-rm -Rf Test/en.actual
|
||||
$(MAKE) Test/DocTest-enumerations.dll
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-enumerations.dll
|
||||
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-enumerations.dll
|
||||
$(DIFF) Test/en.expected-enumerations Test/en.actual
|
||||
|
||||
check-monodocer-update: $(PROGRAM)
|
||||
find Test/en.expected -name \*.xml -exec rm "{}" \;
|
||||
$(MAKE) Test/DocTest.dll-v1
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.expected Test/DocTest.dll
|
||||
$(MONO) $(PROGRAM) update -o Test/en.expected Test/DocTest.dll -lang docid -lang vb.net -lang fsharp -lang javascript -lang c++/cli -lang c++/cx -lang c++/winrt
|
||||
|
||||
check-monodocer: $(PROGRAM)
|
||||
-rm -Rf Test/en.actual
|
||||
$(MAKE) Test/DocTest.dll-v1
|
||||
$(MONO) $(PROGRAM) update --debug --exceptions=all -o Test/en.actual Test/DocTest.dll
|
||||
$(MONO) $(PROGRAM) update --debug -o Test/en.actual Test/DocTest.dll -lang docid -lang vb.net -lang fsharp -lang javascript -lang c++/cli -lang c++/cx -lang c++/winrt
|
||||
$(DIFF) Test/en.expected Test/en.actual
|
||||
$(MONO) $(PROGRAM) update --debug --exceptions=all -o Test/en.actual Test/DocTest.dll
|
||||
$(MONO) $(PROGRAM) update --debug -o Test/en.actual Test/DocTest.dll -lang docid -lang vb.net -lang fsharp -lang javascript -lang c++/cli -lang c++/cx -lang c++/winrt
|
||||
$(DIFF) Test/en.expected Test/en.actual
|
||||
|
||||
check-monodocer-since-update: $(PROGRAM)
|
||||
find Test/en.expected.since -name \*.xml -exec rm "{}" \;
|
||||
$(MAKE) Test/DocTest.dll-v1
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.expected.since Test/DocTest.dll
|
||||
$(MONO) $(PROGRAM) update -o Test/en.expected.since Test/DocTest.dll
|
||||
$(MAKE) Test/DocTest.dll-v2
|
||||
$(MONO) $(PROGRAM) update --exceptions=all --since="Version 2.0" \
|
||||
$(MONO) $(PROGRAM) update --since="Version 2.0" \
|
||||
-o Test/en.expected.since Test/DocTest.dll
|
||||
|
||||
check-monodocer-since: $(PROGRAM)
|
||||
rm -Rf Test/en.actual
|
||||
$(MAKE) Test/DocTest.dll-v1
|
||||
$(MONO) $(PROGRAM) --debug update --exceptions=all -o Test/en.actual Test/DocTest.dll
|
||||
$(MONO) $(PROGRAM) --debug update -o Test/en.actual Test/DocTest.dll
|
||||
$(MAKE) Test/DocTest.dll-v2
|
||||
$(MONO) $(PROGRAM) --debug update --exceptions=all --since="Version 2.0" \
|
||||
$(MONO) $(PROGRAM) --debug update --since="Version 2.0" \
|
||||
-o Test/en.actual Test/DocTest.dll
|
||||
$(DIFF) Test/en.expected.since Test/en.actual
|
||||
|
||||
check-monodocer-delete-update: $(PROGRAM)
|
||||
find Test/en.expected.delete -type f -exec rm "{}" \;
|
||||
$(MAKE) Test/DocTest.dll-v1
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.expected.delete Test/DocTest.dll
|
||||
$(MONO) $(PROGRAM) update -o Test/en.expected.delete Test/DocTest.dll
|
||||
$(MAKE) Test/DocTest.dll-v2
|
||||
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.expected.delete Test/DocTest.dll
|
||||
$(MONO) $(PROGRAM) update -o Test/en.expected.delete Test/DocTest.dll
|
||||
$(MAKE) Test/DocTest.dll-v1
|
||||
$(MONO) $(PROGRAM) update -fno-assembly-versions --delete --exceptions=all \
|
||||
$(MONO) $(PROGRAM) update -fno-assembly-versions --delete \
|
||||
-o Test/en.expected.delete Test/DocTest.dll
|
||||
|
||||
check-monodocer-delete: $(PROGRAM)
|
||||
rm -Rf Test/en.actual
|
||||
$(MAKE) Test/DocTest.dll-v1
|
||||
$(MONO) $(PROGRAM) --debug update --exceptions=all -o Test/en.actual Test/DocTest.dll
|
||||
$(MONO) $(PROGRAM) --debug update -o Test/en.actual Test/DocTest.dll
|
||||
$(MAKE) Test/DocTest.dll-v2
|
||||
$(MONO) $(PROGRAM) --debug update --exceptions=all -o Test/en.actual Test/DocTest.dll
|
||||
$(MONO) $(PROGRAM) --debug update -o Test/en.actual Test/DocTest.dll
|
||||
$(MAKE) Test/DocTest.dll-v1
|
||||
$(MONO) $(PROGRAM) --debug update -fno-assembly-versions --delete --exceptions=all -o Test/en.actual Test/DocTest.dll
|
||||
$(MONO) $(PROGRAM) --debug update -fno-assembly-versions --delete -o Test/en.actual Test/DocTest.dll
|
||||
$(DIFF) Test/en.expected.delete Test/en.actual
|
||||
|
||||
check-monodocer-importslashdoc-update: $(PROGRAM)
|
||||
find Test/en.expected.importslashdoc -name \*.xml -exec rm "{}" \;
|
||||
$(MAKE) Test/DocTest.dll-v1 TEST_CSCFLAGS=-doc:Test/DocTest.xml
|
||||
$(MONO) $(PROGRAM) --debug update --exceptions=all -i Test/DocTest.xml \
|
||||
$(MONO) $(PROGRAM) --debug update -i Test/DocTest.xml \
|
||||
-o Test/en.expected.importslashdoc Test/DocTest.dll
|
||||
|
||||
check-monodocer-importslashdoc: $(PROGRAM)
|
||||
rm -Rf Test/en.actual
|
||||
$(MAKE) Test/DocTest.dll-v1 TEST_CSCFLAGS=-doc:Test/DocTest.xml
|
||||
$(MONO) $(PROGRAM) --debug update --exceptions=all -i Test/DocTest.xml \
|
||||
$(MONO) $(PROGRAM) --debug update -i Test/DocTest.xml \
|
||||
-o Test/en.actual Test/DocTest.dll
|
||||
$(DIFF) Test/en.expected.importslashdoc Test/en.actual
|
||||
|
||||
check-monodocer-importecmadoc-update: $(PROGRAM)
|
||||
find Test/en.expected.importecmadoc -name \*.xml -exec rm "{}" \;
|
||||
$(MAKE) Test/DocTest.dll-v1
|
||||
$(MONO) $(PROGRAM) --debug update --exceptions=all -i Test/TestEcmaDocs.xml \
|
||||
$(MONO) $(PROGRAM) --debug update -i Test/TestEcmaDocs.xml \
|
||||
'--type=System.Action`1' --type=System.AsyncCallback \
|
||||
--type=System.Environment --type=System.Array \
|
||||
-o Test/en.expected.importecmadoc Test/DocTest.dll
|
||||
@@ -319,7 +322,7 @@ check-monodocer-importecmadoc-update: $(PROGRAM)
|
||||
check-monodocer-importecmadoc: $(PROGRAM)
|
||||
rm -Rf Test/en.actual
|
||||
$(MAKE) Test/DocTest.dll-v1
|
||||
$(MONO) $(PROGRAM) --debug update --exceptions=all -i Test/TestEcmaDocs.xml \
|
||||
$(MONO) $(PROGRAM) --debug update -i Test/TestEcmaDocs.xml \
|
||||
'--type=System.Action`1' --type=System.AsyncCallback \
|
||||
--type=System.Environment --type=System.Array \
|
||||
-o Test/en.actual Test/DocTest.dll
|
||||
@@ -357,7 +360,7 @@ check-mdoc-export-msxdoc-update:
|
||||
|
||||
check-mdoc-export-msxdoc:
|
||||
$(MONO) $(PROGRAM) export-msxdoc -o - Test/en.expected.importslashdoc \
|
||||
| $(DIFF_QUIET) - Test/msxdoc-expected.importslashdoc.xml
|
||||
| $(DIFF) - Test/msxdoc-expected.importslashdoc.xml
|
||||
|
||||
my_abs_top_srcdir = $(shell cd . && pwd)
|
||||
|
||||
@@ -387,7 +390,12 @@ run-test-local: check-doc-tools
|
||||
|
||||
run-test-update : check-doc-tools-update
|
||||
|
||||
check-doc-tools: check-monodocer-since \
|
||||
ifdef MCS_MODE
|
||||
check-doc-tools:
|
||||
@echo "WARNING: running in mcs mode, mdoc doesn't compile with mcs. Skipping."
|
||||
else
|
||||
check-doc-tools: \
|
||||
check-monodocer-since \
|
||||
check-monodocer-importecmadoc \
|
||||
check-monodocer-importslashdoc \
|
||||
check-monodocer \
|
||||
@@ -398,12 +406,14 @@ check-doc-tools: check-monodocer-since \
|
||||
check-mdoc-validate \
|
||||
check-monodocer-dropns-classic \
|
||||
check-monodocer-dropns-classic-withsecondary \
|
||||
check-monodocer-dropns-delete \
|
||||
check-monodocer-internal-interface \
|
||||
check-monodocer-enumerations \
|
||||
check-monodocer-dropns-multi \
|
||||
check-monodocer-dropns-multi-withexisting
|
||||
|
||||
#check-monodocer-dropns-delete
|
||||
endif
|
||||
|
||||
check-doc-tools-update: check-monodocer-since-update \
|
||||
check-monodocer-importecmadoc-update \
|
||||
check-monodocer-importslashdoc-update \
|
||||
|
@@ -23,6 +23,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>MyNamespace.MyEnum</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>0</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -37,6 +38,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>MyNamespace.MyEnum</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -51,6 +53,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>MyNamespace.MyEnum</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>1</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
|
@@ -28,6 +28,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>131072</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -42,6 +43,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>131584</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -56,6 +58,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>196608</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -70,6 +73,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>196864</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -84,6 +88,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>197120</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -98,6 +103,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>262144</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -112,6 +118,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>262400</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -126,6 +133,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>262656</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -140,6 +148,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>262912</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -154,6 +163,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>327680</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -168,6 +178,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>327936</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -182,6 +193,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>393216</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -196,6 +208,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>393472</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -210,6 +223,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>458752</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -224,6 +238,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>459008</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -238,6 +253,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>524288</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -252,6 +268,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>524544</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -266,6 +283,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>524800</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -280,6 +298,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>525056</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -294,6 +313,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>4278190080</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -308,6 +328,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>16777216</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -322,6 +343,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>33554432</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -336,6 +358,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>16777215</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -350,6 +373,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2814749767106560</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -364,6 +388,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2815849278734336</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -378,6 +403,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2825744883384320</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -392,6 +418,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2816948790362112</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -406,6 +433,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2818048301989888</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -420,6 +448,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2819147813617664</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -434,6 +463,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2820247325245440</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -448,6 +478,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2821346836873216</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -462,6 +493,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2822446348500992</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -476,6 +508,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2823545860128768</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -490,6 +523,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2824645371756544</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -504,6 +538,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>18374686479671623680</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -518,6 +553,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>72057594037927936</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -532,6 +568,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>144115188075855872</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -546,6 +583,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>72057589742960640</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -560,6 +598,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>ObjCRuntime.Platform</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>0</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
|
@@ -1,6 +1,7 @@
|
||||
<Type Name="MyClass" FullName="MyNamespace.MyClass">
|
||||
<TypeSignature Language="C#" Value="public class MyClass" />
|
||||
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit MyClass extends System.Object" />
|
||||
<TypeSignature Language="VB.NET" Value="Public Class MyClass" />
|
||||
<AssemblyInfo>
|
||||
<AssemblyName>DocTest-InternalInterface</AssemblyName>
|
||||
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
||||
@@ -17,6 +18,7 @@
|
||||
<Member MemberName=".ctor">
|
||||
<MemberSignature Language="C#" Value="public MyClass ();" />
|
||||
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
|
||||
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
|
||||
<MemberType>Constructor</MemberType>
|
||||
<AssemblyInfo>
|
||||
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
||||
@@ -30,6 +32,7 @@
|
||||
<Member MemberName="Bar">
|
||||
<MemberSignature Language="C#" Value="public string Bar { get; set; }" />
|
||||
<MemberSignature Language="ILAsm" Value=".property instance string Bar" />
|
||||
<MemberSignature Language="VB.NET" Value="Public Property Bar As String" />
|
||||
<MemberType>Property</MemberType>
|
||||
<AssemblyInfo>
|
||||
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
||||
@@ -46,7 +49,11 @@
|
||||
<Member MemberName="BarMeth">
|
||||
<MemberSignature Language="C#" Value="public void BarMeth ();" />
|
||||
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void BarMeth() cil managed" />
|
||||
<MemberSignature Language="VB.NET" Value="Public Sub BarMeth ()" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:MyNamespace.MyInternalInterface.BarMeth</InterfaceMember>
|
||||
</Implements>
|
||||
<AssemblyInfo>
|
||||
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
||||
</AssemblyInfo>
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<Type Name="GenericBase<U>+NestedCollection+Enumerator" FullName="Mono.DocTest.Generic.GenericBase<U>+NestedCollection+Enumerator">
|
||||
<TypeSignature Language="C#" Value="protected struct GenericBase<U>.NestedCollection.Enumerator" />
|
||||
<TypeSignature Language="C#" Value="protected internal struct GenericBase<U>.NestedCollection.Enumerator" />
|
||||
<TypeSignature Language="ILAsm" Value=".class nested protected sequential ansi sealed beforefieldinit GenericBase`1/NestedCollection/Enumerator<U> extends System.ValueType" />
|
||||
<AssemblyInfo>
|
||||
<AssemblyName>DocTest</AssemblyName>
|
||||
|
@@ -76,203 +76,6 @@
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<exception cref="T:System.ArgumentException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.ArgumentNullException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.FormatException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.InvalidCastException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.InvalidOperationException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.OutOfMemoryException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.RankException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="MyEvent">
|
||||
@@ -285,207 +88,10 @@
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<exception cref="T:System.ArgumentException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.ArgumentNullException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.FormatException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.InvalidCastException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.InvalidOperationException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.OutOfMemoryException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
<exception cref="T:System.RankException">To be added; from:
|
||||
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
|
||||
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
|
||||
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
|
||||
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.FormatError" />,
|
||||
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
|
||||
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
|
||||
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
|
||||
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="op_Explicit">
|
||||
<MemberSignature Language="C#" Value="public static U op_Explicit (Mono.DocTest.Generic.GenericBase<U> list);" />
|
||||
<MemberSignature Language="C#" Value="public static explicit operator U (Mono.DocTest.Generic.GenericBase<U> list);" />
|
||||
<MemberSignature Language="ILAsm" Value=".method public static hidebysig specialname !U op_Explicit(class Mono.DocTest.Generic.GenericBase`1<!U> list) cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<ReturnValue>
|
||||
|
@@ -23,6 +23,9 @@
|
||||
<Interface>
|
||||
<InterfaceName>System.Collections.Generic.IEnumerable<System.Int32[]></InterfaceName>
|
||||
</Interface>
|
||||
<Interface>
|
||||
<InterfaceName>System.Collections.IEnumerable</InterfaceName>
|
||||
</Interface>
|
||||
</Interfaces>
|
||||
<Docs>
|
||||
<typeparam name="T">To be added.</typeparam>
|
||||
@@ -44,6 +47,9 @@
|
||||
<MemberSignature Language="C#" Value="public System.Collections.Generic.IEnumerator<int[]> GetEnumerator ();" />
|
||||
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Collections.Generic.IEnumerator`1<int32[]> GetEnumerator() cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.Collections.Generic.IEnumerable`1.GetEnumerator</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Collections.Generic.IEnumerator<System.Int32[]></ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -98,7 +104,7 @@
|
||||
</Member>
|
||||
<Member MemberName="RefMethod<U>">
|
||||
<MemberSignature Language="C#" Value="public void RefMethod<U> (ref T t, ref U u);" />
|
||||
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void RefMethod<U>(!T t, !!U u) cil managed" />
|
||||
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void RefMethod<U>(!T& t, !!U& u) cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Void</ReturnType>
|
||||
@@ -107,8 +113,8 @@
|
||||
<TypeParameter Name="U" />
|
||||
</TypeParameters>
|
||||
<Parameters>
|
||||
<Parameter Name="t" Type="T&" RefType="ref" />
|
||||
<Parameter Name="u" Type="U&" RefType="ref" />
|
||||
<Parameter Name="t" Type="T" RefType="ref" />
|
||||
<Parameter Name="u" Type="U" RefType="ref" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<typeparam name="U">To be added.</typeparam>
|
||||
@@ -122,6 +128,9 @@
|
||||
<MemberSignature Language="C#" Value="System.Collections.IEnumerator IEnumerable.GetEnumerator ();" />
|
||||
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance class System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.Collections.IEnumerable.GetEnumerator</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Collections.IEnumerator</ReturnType>
|
||||
</ReturnValue>
|
||||
|
@@ -35,9 +35,21 @@
|
||||
<Interface>
|
||||
<InterfaceName>System.Collections.Generic.IEnumerable<A></InterfaceName>
|
||||
</Interface>
|
||||
<Interface>
|
||||
<InterfaceName>System.Collections.Generic.IEnumerable<T></InterfaceName>
|
||||
</Interface>
|
||||
<Interface>
|
||||
<InterfaceName>System.Collections.Generic.IEnumerator<A></InterfaceName>
|
||||
</Interface>
|
||||
<Interface>
|
||||
<InterfaceName>System.Collections.IEnumerable</InterfaceName>
|
||||
</Interface>
|
||||
<Interface>
|
||||
<InterfaceName>System.Collections.IEnumerator</InterfaceName>
|
||||
</Interface>
|
||||
<Interface>
|
||||
<InterfaceName>System.IDisposable</InterfaceName>
|
||||
</Interface>
|
||||
</Interfaces>
|
||||
<Docs>
|
||||
<typeparam name="A">To be added.</typeparam>
|
||||
@@ -78,6 +90,9 @@
|
||||
<MemberSignature Language="C#" Value="public int Count { get; }" />
|
||||
<MemberSignature Language="ILAsm" Value=".property instance int32 Count" />
|
||||
<MemberType>Property</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>P:System.Collections.Generic.ICollection`1.Count</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Int32</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -91,6 +106,9 @@
|
||||
<MemberSignature Language="C#" Value="public A Current { get; }" />
|
||||
<MemberSignature Language="ILAsm" Value=".property instance !A Current" />
|
||||
<MemberType>Property</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>P:System.Collections.Generic.IEnumerator`1.Current</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>A</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -104,6 +122,9 @@
|
||||
<MemberSignature Language="C#" Value="public void Dispose ();" />
|
||||
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Dispose() cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.IDisposable.Dispose</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Void</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -145,6 +166,9 @@
|
||||
<MemberSignature Language="C#" Value="A IFoo<A>.Method<U> (A a, U u);" />
|
||||
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance !A Mono.DocTest.Generic.IFoo<A>.Method<U>(!A a, !!U u) cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:Mono.DocTest.Generic.IFoo`1.Method``1(`0,``0)</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>A</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -168,6 +192,9 @@
|
||||
<MemberSignature Language="C#" Value="public bool MoveNext ();" />
|
||||
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool MoveNext() cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.Collections.IEnumerator.MoveNext</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Boolean</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -182,6 +209,9 @@
|
||||
<MemberSignature Language="C#" Value="public void Reset ();" />
|
||||
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Reset() cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.Collections.IEnumerator.Reset</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Void</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -195,6 +225,9 @@
|
||||
<MemberSignature Language="C#" Value="void ICollection<A>.Add (A item);" />
|
||||
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Collections.Generic.ICollection<A>.Add(!A item) cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Add(`0)</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Void</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -211,6 +244,9 @@
|
||||
<MemberSignature Language="C#" Value="void ICollection<A>.Clear ();" />
|
||||
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Collections.Generic.ICollection<A>.Clear() cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Clear</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Void</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -224,6 +260,9 @@
|
||||
<MemberSignature Language="C#" Value="bool ICollection<A>.Contains (A item);" />
|
||||
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance bool System.Collections.Generic.ICollection<A>.Contains(!A item) cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Contains(`0)</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Boolean</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -241,6 +280,9 @@
|
||||
<MemberSignature Language="C#" Value="bool System.Collections.Generic.ICollection<A>.IsReadOnly { get; }" />
|
||||
<MemberSignature Language="ILAsm" Value=".property instance bool System.Collections.Generic.ICollection<A>.IsReadOnly" />
|
||||
<MemberType>Property</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>P:System.Collections.Generic.ICollection`1.IsReadOnly</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Boolean</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -254,6 +296,9 @@
|
||||
<MemberSignature Language="C#" Value="bool ICollection<A>.Remove (A item);" />
|
||||
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance bool System.Collections.Generic.ICollection<A>.Remove(!A item) cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Remove(`0)</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Boolean</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -271,6 +316,9 @@
|
||||
<MemberSignature Language="C#" Value="System.Collections.Generic.IEnumerator<A> IEnumerable<A>.GetEnumerator ();" />
|
||||
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance class System.Collections.Generic.IEnumerator`1<!A> System.Collections.Generic.IEnumerable<A>.GetEnumerator() cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.Collections.Generic.IEnumerable`1.GetEnumerator</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Collections.Generic.IEnumerator<A></ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -285,6 +333,9 @@
|
||||
<MemberSignature Language="C#" Value="A System.Collections.Generic.IEnumerator<A>.Current { get; }" />
|
||||
<MemberSignature Language="ILAsm" Value=".property instance !A System.Collections.Generic.IEnumerator<A>.Current" />
|
||||
<MemberType>Property</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>P:System.Collections.Generic.IEnumerator`1.Current</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>A</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -298,6 +349,9 @@
|
||||
<MemberSignature Language="C#" Value="System.Collections.IEnumerator IEnumerable.GetEnumerator ();" />
|
||||
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance class System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() cil managed" />
|
||||
<MemberType>Method</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>M:System.Collections.IEnumerable.GetEnumerator</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Collections.IEnumerator</ReturnType>
|
||||
</ReturnValue>
|
||||
@@ -312,6 +366,9 @@
|
||||
<MemberSignature Language="C#" Value="object System.Collections.IEnumerator.Current { get; }" />
|
||||
<MemberSignature Language="ILAsm" Value=".property instance object System.Collections.IEnumerator.Current" />
|
||||
<MemberType>Property</MemberType>
|
||||
<Implements>
|
||||
<InterfaceMember>P:System.Collections.IEnumerator.Current</InterfaceMember>
|
||||
</Implements>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Object</ReturnType>
|
||||
</ReturnValue>
|
||||
|
@@ -19,6 +19,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>Mono.DocTest.Color</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -30,6 +31,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>Mono.DocTest.Color</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>1</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -41,6 +43,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>Mono.DocTest.Color</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -52,6 +55,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>Mono.DocTest.Color</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>0</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
|
@@ -29,8 +29,6 @@
|
||||
<param name="docs">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<exception cref="T:System.ArgumentNullException">To be added; from:
|
||||
<see cref="M:Mono.DocTest.DocAttribute.#ctor(System.String)" /></exception>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Field">
|
||||
|
@@ -31,10 +31,6 @@
|
||||
<param name="i">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<exception cref="T:System.ApplicationException">To be added; from:
|
||||
<see cref="M:Mono.DocTest.DocValueType.M(System.Int32)" /></exception>
|
||||
<exception cref="T:System.SystemException">To be added; from:
|
||||
<see cref="M:Mono.DocTest.DocValueType.M(System.Int32)" /></exception>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="total">
|
||||
|
@@ -80,8 +80,6 @@
|
||||
<param name="list">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<exception cref="T:System.Exception">To be added; from:
|
||||
<see cref="M:Mono.DocTest.UseLists.Process(System.Collections.Generic.List{System.Int32})" /></exception>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Process">
|
||||
@@ -98,13 +96,6 @@
|
||||
<param name="list">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<exception cref="T:System.ArgumentException">To be added; from:
|
||||
<see cref="M:Mono.DocTest.UseLists.Process``1(System.Collections.Generic.List{System.Predicate{``0}})" />,
|
||||
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
|
||||
<exception cref="T:System.ArgumentNullException">To be added; from:
|
||||
<see cref="M:Mono.DocTest.UseLists.Process(System.Collections.Generic.List{System.Predicate{System.Int32}})" />,
|
||||
<see cref="M:Mono.DocTest.UseLists.Process``1(System.Collections.Generic.List{System.Predicate{``0}})" />,
|
||||
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Process<T>">
|
||||
@@ -125,10 +116,6 @@
|
||||
<param name="list">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<exception cref="T:System.ArgumentException">To be added; from:
|
||||
<see cref="M:Mono.DocTest.UseLists.Process``1(System.Collections.Generic.List{System.Predicate{``0}})" /></exception>
|
||||
<exception cref="T:System.ArgumentNullException">To be added; from:
|
||||
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="UseHelper<T,U,V>">
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<Type Name="Widget+Direction" FullName="Mono.DocTest.Widget+Direction">
|
||||
<TypeSignature Language="C#" Value="protected enum Widget.Direction" />
|
||||
<TypeSignature Language="C#" Value="protected internal enum Widget.Direction" />
|
||||
<TypeSignature Language="ILAsm" Value=".class nested protected auto ansi sealed Widget/Direction extends System.Enum" />
|
||||
<AssemblyInfo>
|
||||
<AssemblyName>DocTest</AssemblyName>
|
||||
@@ -24,6 +24,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>Mono.DocTest.Widget+Direction</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>2</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -35,6 +36,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>Mono.DocTest.Widget+Direction</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>0</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -46,6 +48,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>Mono.DocTest.Widget+Direction</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>1</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
@@ -57,6 +60,7 @@
|
||||
<ReturnValue>
|
||||
<ReturnType>Mono.DocTest.Widget+Direction</ReturnType>
|
||||
</ReturnValue>
|
||||
<MemberValue>3</MemberValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
</Docs>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user