diff --git a/src/Docfx.Build/ApiPage/ApiPageProcessor.cs b/src/Docfx.Build/ApiPage/ApiPageProcessor.cs index f2c454b28fc..55251944d1c 100644 --- a/src/Docfx.Build/ApiPage/ApiPageProcessor.cs +++ b/src/Docfx.Build/ApiPage/ApiPageProcessor.cs @@ -41,13 +41,18 @@ public FileModel Load(FileAndType file, ImmutableDictionary meta var yml = EnvironmentContext.FileAbstractLayer.ReadAllText(file.File); var json = JsonSerializer.Serialize(deserializer.Deserialize(yml)); var data = JsonSerializer.Deserialize(json, ApiPage.JsonSerializerOptions); - var content = new Dictionary(metadata.OrderBy(item => item.Key)) + var content = new Dictionary(metadata.OrderBy(item => item.Key)); + + if (data.metadata is not null) { - ["title"] = data.title, - ["content"] = ApiPageHtmlTemplate.Render(data, Markup).ToString(), - ["yamlmime"] = "ApiPage", - ["_disableNextArticle"] = true, - }; + foreach (var (key, value) in data.metadata.OrderBy(item => item.Key)) + content[key] = value.Value; + } + + content["title"] = data.title; + content["content"] = ApiPageHtmlTemplate.Render(data, Markup).ToString(); + content["yamlmime"] = "ApiPage"; + content["_disableNextArticle"] = true; var localPathFromRoot = PathUtility.MakeRelativePath(EnvironmentContext.BaseDirectory, EnvironmentContext.FileAbstractLayer.GetPhysicalPath(file.File)); diff --git a/src/Docfx.Dotnet/Docfx.Dotnet.csproj b/src/Docfx.Dotnet/Docfx.Dotnet.csproj index fa9c04bdf77..ac8b613730d 100644 --- a/src/Docfx.Dotnet/Docfx.Dotnet.csproj +++ b/src/Docfx.Dotnet/Docfx.Dotnet.csproj @@ -29,6 +29,7 @@ + diff --git a/src/Docfx.Dotnet/DotnetApiCatalog.ApiPage.cs b/src/Docfx.Dotnet/DotnetApiCatalog.ApiPage.cs index ae09f193661..d896d2dd310 100644 --- a/src/Docfx.Dotnet/DotnetApiCatalog.ApiPage.cs +++ b/src/Docfx.Dotnet/DotnetApiCatalog.ApiPage.cs @@ -10,6 +10,7 @@ using Docfx.Common.Git; using Docfx.DataContracts.ManagedReference; using Docfx.Plugins; +using HtmlAgilityPack; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Shared.Extensions; using OneOf; @@ -96,9 +97,14 @@ _ when SymbolHelper.IsMember(method) => "Method", throw new NotSupportedException($"Unknown symbol type kind {symbols[0].symbol}"); } + var metadata = new Dictionary>(); + if (!string.IsNullOrEmpty(comment?.Summary)) + metadata["description"] = HtmlInnerText(comment.Summary); + output(config.OutputFolder, id, new ApiPage { title = title, + metadata = metadata.Count > 0 ? metadata : null, languageId = "csharp", body = body.ToArray(), }); @@ -760,6 +766,13 @@ Span Link(string text, string? url) }); } } + + static string HtmlInnerText(string html) + { + var doc = new HtmlDocument(); + doc.LoadHtml(html); + return doc.DocumentNode.InnerText; + } } #endif diff --git a/templates/common/ManagedReference.common.js b/templates/common/ManagedReference.common.js index ba9e0661bc0..24a9c64a970 100644 --- a/templates/common/ManagedReference.common.js +++ b/templates/common/ManagedReference.common.js @@ -36,6 +36,10 @@ exports.transform = function (model) { } } + if (model.summary && !model.description) { + model.description = model.summary.replace(/<.*?>/gi, '').replace(/(\r\n|\n|\r)/gm, ' ').trim(); + } + return model; } diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp.Linux/api/CSharp8.Issue4007.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp.Linux/api/CSharp8.Issue4007.html.view.verified.json index 4ae1404f6f1..aaa2d299b28 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp.Linux/api/CSharp8.Issue4007.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp.Linux/api/CSharp8.Issue4007.html.view.verified.json @@ -1006,6 +1006,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "This works: . This does not work: .", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp.Windows/api/CSharp8.Issue4007.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp.Windows/api/CSharp8.Issue4007.html.view.verified.json index 4ae1404f6f1..aaa2d299b28 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp.Windows/api/CSharp8.Issue4007.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp.Windows/api/CSharp8.Issue4007.html.view.verified.json @@ -1006,6 +1006,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "This works: . This does not work: .", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromAssembly.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromAssembly.Class1.html.view.verified.json index 5c3229aaa7c..8024d36dd78 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromAssembly.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromAssembly.Class1.html.view.verified.json @@ -847,6 +847,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "This is a test class.", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json index 185c34683f8..f2d52a3dbf0 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json @@ -1144,6 +1144,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "This is a test class to have something for DocFX to document.", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromProject.Issue8725.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromProject.Issue8725.html.view.verified.json index 176e064a82c..cdb7c928baf 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromProject.Issue8725.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromProject.Issue8725.html.view.verified.json @@ -904,6 +904,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "A nice class", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json index de352c86a1a..331c4d29fc2 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json @@ -911,6 +911,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "This is the BaseClass", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromVBSourceCode.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromVBSourceCode.Class1.html.view.verified.json index 3f8ed9c4e50..3579751c6b8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromVBSourceCode.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/BuildFromVBSourceCode.Class1.html.view.verified.json @@ -1513,6 +1513,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "This is summary from vb class...", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Cat-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Cat-2.html.view.verified.json index 9864cfb34bd..5885154f9e9 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Cat-2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Cat-2.html.view.verified.json @@ -4296,6 +4296,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json index 1023ba47453..559e9ddba16 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json @@ -597,6 +597,7 @@ "hideSubtitle": false, "isClass": false, "inEnum": true, + "description": "Enumeration ColorType", "isEnum": true, "_disableToc": false, "_disableNextArticle": true diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json index 52740afd09d..c2f8a858446 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json @@ -187,6 +187,7 @@ "hideSubtitle": false, "isClass": true, "inDelegate": true, + "description": "Delegate ContainersRefTypeDelegate", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.html.view.verified.json index 4af3a419dcf..a6183d78ade 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Core.ContainersRefType.html.view.verified.json @@ -1284,6 +1284,7 @@ "hideSubtitle": false, "isClass": true, "inStruct": true, + "description": "Struct ContainersRefType", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.FakeDelegate-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.FakeDelegate-1.html.view.verified.json index 336cd14ee69..44bb35fa372 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.FakeDelegate-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.FakeDelegate-1.html.view.verified.json @@ -382,6 +382,7 @@ "hideSubtitle": false, "isClass": true, "inDelegate": true, + "description": "Fake delegate", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.IAnimal.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.IAnimal.html.view.verified.json index 09451d45991..90ac3d5d5e3 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.IAnimal.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.IAnimal.html.view.verified.json @@ -1120,6 +1120,7 @@ "hideSubtitle": false, "isClass": true, "inInterface": true, + "description": "This is basic interface of all animal.", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.ICat.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.ICat.html.view.verified.json index bcfe715d9dd..00a4c2e8143 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.ICat.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.ICat.html.view.verified.json @@ -686,6 +686,7 @@ "hideSubtitle": false, "isClass": true, "inInterface": true, + "description": "Cat's interface", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.ICatExtension.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.ICatExtension.html.view.verified.json index 0fb7fe57519..58f60738ee0 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.ICatExtension.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.ICatExtension.html.view.verified.json @@ -1048,6 +1048,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "It's the class that contains ICat interface's extension method. This class must be public and static. Also it shouldn't be a geneic class", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.MRefDelegate-3.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.MRefDelegate-3.html.view.verified.json index 9d3b7bef788..25f39dedda1 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.MRefDelegate-3.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.MRefDelegate-3.html.view.verified.json @@ -347,6 +347,7 @@ "hideSubtitle": false, "isClass": true, "inDelegate": true, + "description": "Generic delegate with many constrains.", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.MRefNormalDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.MRefNormalDelegate.html.view.verified.json index 614975fa874..707d3c35874 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.MRefNormalDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.MRefNormalDelegate.html.view.verified.json @@ -284,6 +284,7 @@ "hideSubtitle": false, "isClass": true, "inDelegate": true, + "description": "Delegate in the namespace", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Tom.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Tom.html.view.verified.json index d6c67f1aade..1985c398c36 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Tom.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.Tom.html.view.verified.json @@ -1027,6 +1027,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "Tom class is only inherit from Object. Not any member inside itself.", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.TomFromBaseClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.TomFromBaseClass.html.view.verified.json index 8e306be73e8..3fc5acf89a7 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.TomFromBaseClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/CatLibrary.TomFromBaseClass.html.view.verified.json @@ -874,6 +874,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "TomFromBaseClass inherits from @", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json index 93f0abba416..dafd9265c1f 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json @@ -645,6 +645,7 @@ "hideSubtitle": false, "isClass": false, "inEnum": true, + "description": "Enumeration ColorType", "isEnum": true, "_disableToc": false, "_disableNextArticle": true diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/toc.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/toc.pdf.verified.json index c3db5887ba1..dee30508af8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/toc.pdf.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/api/toc.pdf.verified.json @@ -1,9 +1,9 @@ { - "NumberOfPages": 82, + "NumberOfPages": 85, "Pages": [ { "Number": 1, - "Text": "Table of ContentsBuildFromAssembly3Class14Issue54325BuildFromCSharpSourceCode6CSharp7BuildFromProject8Issue854010A11A12B13B14Class115Class1.IIssue894820Class1.Issue866521Class1.Issue8696Attribute24Class1.Issue894826Class1.Issue926027Class1.Test28IInheritdoc29Inheritdoc30Inheritdoc.Issue636632Inheritdoc.Issue6366.Class133Inheritdoc.Issue6366.Class235Inheritdoc.Issue703536Inheritdoc.Issue748437Inheritdoc.Issue810139Inheritdoc.Issue812941Issue872542BuildFromVBSourceCode43BaseClass144Class145CatLibrary47Core49ContainersRefType50ContainersRefType.ColorType52ContainersRefType.ContainersRefTypeChild53ContainersRefType.ContainersRefTypeChildInterface54ContainersRefType.ContainersRefTypeDelegate55", + "Text": "Table of ContentsBuildFromAssembly3Class14Issue54325BuildFromCSharpSourceCode6CSharp7BuildFromProject8Issue854010A11A12B13B14Class115Class1.IIssue894820Class1.Issue866521Class1.Issue8696Attribute24Class1.Issue894826Class1.Issue926027Class1.Test28IInheritdoc29Inheritdoc30Inheritdoc.Issue636632Inheritdoc.Issue6366.Class133Inheritdoc.Issue6366.Class235Inheritdoc.Issue703536Inheritdoc.Issue748437Inheritdoc.Issue810139Inheritdoc.Issue812941Issue872542BuildFromVBSourceCode43BaseClass144Class145CatLibrary48Core50ContainersRefType51ContainersRefType.ColorType54ContainersRefType.ContainersRefTypeChild55ContainersRefType.ContainersRefTypeChildInterface56ContainersRefType.ContainersRefTypeDelegate57", "Links": [ { "Goto": { @@ -286,7 +286,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -295,7 +295,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -304,7 +304,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -313,7 +313,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -322,7 +322,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -331,7 +331,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -340,7 +340,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -351,11 +351,11 @@ }, { "Number": 2, - "Text": "ExplicitLayoutClass56Issue23157CatException58Cat59Complex68FakeDelegate69IAnimal70ICat73ICatExtension74MRefDelegate76MRefNormalDelegate77Tom78TomFromBaseClass80MRef.Demo.Enumeration81ColorType82", + "Text": "ExplicitLayoutClass58Issue23159CatException60Cat61Complex71FakeDelegate72IAnimal73ICat76ICatExtension77MRefDelegate79MRefNormalDelegate80Tom81TomFromBaseClass83MRef.Demo.Enumeration84ColorType85", "Links": [ { "Goto": { - "PageNumber": 56, + "PageNumber": 58, "Type": 2, "Coordinates": { "Top": 0 @@ -364,7 +364,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Type": 2, "Coordinates": { "Top": 0 @@ -373,7 +373,7 @@ }, { "Goto": { - "PageNumber": 58, + "PageNumber": 60, "Type": 2, "Coordinates": { "Top": 0 @@ -382,7 +382,7 @@ }, { "Goto": { - "PageNumber": 59, + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 @@ -391,7 +391,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -400,7 +400,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -409,7 +409,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -418,7 +418,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -427,7 +427,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -436,7 +436,7 @@ }, { "Goto": { - "PageNumber": 76, + "PageNumber": 79, "Type": 2, "Coordinates": { "Top": 0 @@ -445,7 +445,7 @@ }, { "Goto": { - "PageNumber": 77, + "PageNumber": 80, "Type": 2, "Coordinates": { "Top": 0 @@ -454,7 +454,7 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, "Type": 2, "Coordinates": { "Top": 0 @@ -463,7 +463,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -472,7 +472,7 @@ }, { "Goto": { - "PageNumber": 81, + "PageNumber": 84, "Type": 2, "Coordinates": { "Top": 0 @@ -481,7 +481,7 @@ }, { "Goto": { - "PageNumber": 82, + "PageNumber": 85, "Type": 2, "Coordinates": { "Top": 0 @@ -492,7 +492,7 @@ }, { "Number": 3, - "Text": "3 / 82ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", + "Text": "3 / 85ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", "Links": [ { "Goto": { @@ -516,7 +516,7 @@ }, { "Number": 4, - "Text": "4 / 82Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllThis is a test class.Inheritanceobject\uF1C5 Class1Inherited Membersobject.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ToString()\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.GetHashCode()\uF1C5ConstructorsMethodsHello World.Class Class1public class Class1\uF12CClass1()public Class1()HelloWorld()public static void HelloWorld()", + "Text": "4 / 85Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllThis is a test class.Inheritanceobject\uF1C5 Class1Inherited Membersobject.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ToString()\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.GetHashCode()\uF1C5ConstructorsMethodsHello World.Class Class1public class Class1\uF12CClass1()public Class1()HelloWorld()public static void HelloWorld()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -621,7 +621,7 @@ }, { "Number": 5, - "Text": "5 / 82Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.GetType()\uF1C5 , object.Equals(object, object)\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5PropertiesProperty Valuestring\uF1C5Struct Issue5432public struct Issue5432Namepublic string Name { get; }", + "Text": "5 / 85Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.GetType()\uF1C5 , object.Equals(object, object)\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5PropertiesProperty Valuestring\uF1C5Struct Issue5432public struct Issue5432Namepublic string Name { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -717,7 +717,7 @@ }, { "Number": 6, - "Text": "6 / 82ClassesCSharpNamespace BuildFromCSharpSourceCode", + "Text": "6 / 85ClassesCSharpNamespace BuildFromCSharpSourceCode", "Links": [ { "Goto": { @@ -732,7 +732,7 @@ }, { "Number": 7, - "Text": "7 / 82Namespace:BuildFromCSharpSourceCodeInheritanceobject\uF1C5 CSharpInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParametersargs string\uF1C5[]Class CSharppublic class CSharp\uF12CMain(string[])public static void Main(string[] args)", + "Text": "7 / 85Namespace:BuildFromCSharpSourceCodeInheritanceobject\uF1C5 CSharpInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParametersargs string\uF1C5[]Class CSharppublic class CSharp\uF12CMain(string[])public static void Main(string[] args)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -864,7 +864,7 @@ }, { "Number": 8, - "Text": "8 / 82NamespacesBuildFromProject.Issue8540ClassesClass1Class1.Issue8665Class1.Issue8696AttributeClass1.Issue8948Class1.TestInheritdocInheritdoc.Issue6366Inheritdoc.Issue6366.Class1Inheritdoc.Issue6366.Class2Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Issue8725A nice classStructsInheritdoc.Issue8129InterfacesClass1.IIssue8948IInheritdocEnumsNamespace BuildFromProject", + "Text": "8 / 85NamespacesBuildFromProject.Issue8540ClassesClass1Class1.Issue8665Class1.Issue8696AttributeClass1.Issue8948Class1.TestInheritdocInheritdoc.Issue6366Inheritdoc.Issue6366.Class1Inheritdoc.Issue6366.Class2Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Issue8725A nice classStructsInheritdoc.Issue8129InterfacesClass1.IIssue8948IInheritdocEnumsNamespace BuildFromProject", "Links": [ { "Goto": { @@ -1158,7 +1158,7 @@ }, { "Number": 9, - "Text": "9 / 82Class1.Issue9260", + "Text": "9 / 85Class1.Issue9260", "Links": [ { "Goto": { @@ -1182,7 +1182,7 @@ }, { "Number": 10, - "Text": "10 / 82NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", + "Text": "10 / 85NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", "Links": [ { "Goto": { @@ -1278,7 +1278,7 @@ }, { "Number": 11, - "Text": "11 / 82ClassesANamespace BuildFromProject.Issue8540.A", + "Text": "11 / 85ClassesANamespace BuildFromProject.Issue8540.A", "Links": [ { "Goto": { @@ -1293,7 +1293,7 @@ }, { "Number": 12, - "Text": "12 / 82Namespace:BuildFromProject.Issue8540.AAssembly:BuildFromProject.dllInheritanceobject\uF1C5 AInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Apublic class A\uF12C", + "Text": "12 / 85Namespace:BuildFromProject.Issue8540.AAssembly:BuildFromProject.dllInheritanceobject\uF1C5 AInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Apublic class A\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1416,7 +1416,7 @@ }, { "Number": 13, - "Text": "13 / 82ClassesBNamespace BuildFromProject.Issue8540.B", + "Text": "13 / 85ClassesBNamespace BuildFromProject.Issue8540.B", "Links": [ { "Goto": { @@ -1431,7 +1431,7 @@ }, { "Number": 14, - "Text": "14 / 82Namespace:BuildFromProject.Issue8540.BAssembly:BuildFromProject.dllInheritanceobject\uF1C5 BInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Bpublic class B\uF12C", + "Text": "14 / 85Namespace:BuildFromProject.Issue8540.BAssembly:BuildFromProject.dllInheritanceobject\uF1C5 BInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Bpublic class B\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1554,7 +1554,7 @@ }, { "Number": 15, - "Text": "15 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1ImplementsIClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsPricing models are used to calculate theoretical option values1-Black Scholes2-Black763-Black76Fut4-Equity Tree5-Variance Swap6-Dividend ForecastIConfiguration related helper and extension routines.Class Class1public class Class1 : IClass1\uF12CIssue1651()public void Issue1651()Issue1887()", + "Text": "15 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1ImplementsIClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsPricing models are used to calculate theoretical option values1-Black Scholes2-Black763-Black76Fut4-Equity Tree5-Variance Swap6-Dividend ForecastIConfiguration related helper and extension routines.Class Class1public class Class1 : IClass1\uF12CIssue1651()public void Issue1651()Issue1887()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1659,12 +1659,12 @@ }, { "Number": 16, - "Text": "16 / 82ExamplesRemarksFor example:Remarkspublic void Issue1887()Issue2623()public void Issue2623()MyClass myClass = new MyClass();void Update(){ myClass.Execute();}MyClass myClass = new MyClass();void Update(){ myClass.Execute();}Issue2723()public void Issue2723()NOTEThis is a . & \" '\uF431", + "Text": "16 / 85ExamplesRemarksFor example:Remarkspublic void Issue1887()Issue2623()public void Issue2623()MyClass myClass = new MyClass();void Update(){ myClass.Execute();}MyClass myClass = new MyClass();void Update(){ myClass.Execute();}Issue2723()public void Issue2723()NOTEThis is a . & \" '\uF431", "Links": [] }, { "Number": 17, - "Text": "17 / 82Inline .link\uF1C5ExamplesRemarksfor (var i = 0; i > 10; i++) // & \" 'var range = new Range { Min = 0, Max = 10 };var range = new Range { Min = 0, Max = 10 };Issue4017()public void Issue4017()public void HookMessageDeleted(BaseSocketClient client){ client.MessageDeleted += HandleMessageDelete;}public Task HandleMessageDelete(Cacheable cachedMessage, ISocketMessageChannel channel){ // check if the message exists in cache; if not, we cannot report what was removed if (!cachedMessage.HasValue) return; var message = cachedMessage.Value; Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\" + Environment.NewLine + message.Content); return Task.CompletedTask;}void Update(){", + "Text": "17 / 85Inline .link\uF1C5ExamplesRemarksfor (var i = 0; i > 10; i++) // & \" 'var range = new Range { Min = 0, Max = 10 };var range = new Range { Min = 0, Max = 10 };Issue4017()public void Issue4017()public void HookMessageDeleted(BaseSocketClient client){ client.MessageDeleted += HandleMessageDelete;}public Task HandleMessageDelete(Cacheable cachedMessage, ISocketMessageChannel channel){ // check if the message exists in cache; if not, we cannot report what was removed if (!cachedMessage.HasValue) return; var message = cachedMessage.Value; Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\" + Environment.NewLine + message.Content); return Task.CompletedTask;}void Update(){", "Links": [ { "Uri": "https://www.github.com/" @@ -1679,12 +1679,12 @@ }, { "Number": 18, - "Text": "18 / 82Remarks@\"\\\\?\\\" @\"\\\\?\\\"RemarksThere's really no reason to not believe that this class can test things.TermDescriptionA TermA DescriptionBee TermBee DescriptionType ParametersT myClass.Execute();}Issue4392()public void Issue4392()Issue7484()public void Issue7484()Issue8764()public void Issue8764() where T : unmanagedIssue896()", + "Text": "18 / 85Remarks@\"\\\\?\\\" @\"\\\\?\\\"RemarksThere's really no reason to not believe that this class can test things.TermDescriptionA TermA DescriptionBee TermBee DescriptionType ParametersT myClass.Execute();}Issue4392()public void Issue4392()Issue7484()public void Issue7484()Issue8764()public void Issue8764() where T : unmanagedIssue896()", "Links": [] }, { "Number": 19, - "Text": "19 / 82TestSee AlsoClass1.Test, Class1Calculates the determinant of a 3-dimensional matrix:Returns the smallest value:Returnsdouble\uF1C5This method should do something...RemarksThis is remarks.public void Issue896()Issue9216()public static double Issue9216()XmlCommentIncludeTag()public void XmlCommentIncludeTag()", + "Text": "19 / 85TestSee AlsoClass1.Test, Class1Calculates the determinant of a 3-dimensional matrix:Returns the smallest value:Returnsdouble\uF1C5This method should do something...RemarksThis is remarks.public void Issue896()Issue9216()public static double Issue9216()XmlCommentIncludeTag()public void XmlCommentIncludeTag()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.double" @@ -1726,7 +1726,7 @@ }, { "Number": 20, - "Text": "20 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948public interface Class1.IIssue8948DoNothing()void DoNothing()", + "Text": "20 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948public interface Class1.IIssue8948DoNothing()void DoNothing()", "Links": [ { "Goto": { @@ -1759,7 +1759,7 @@ }, { "Number": 21, - "Text": "21 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8665Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ConstructorsParametersfoo int\uF1C5Class Class1.Issue8665public class Class1.Issue8665\uF12CIssue8665()public Issue8665()Issue8665(int)public Issue8665(int foo)Issue8665(int, char)public Issue8665(int foo, char bar)", + "Text": "21 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8665Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ConstructorsParametersfoo int\uF1C5Class Class1.Issue8665public class Class1.Issue8665\uF12CIssue8665()public Issue8665()Issue8665(int)public Issue8665(int foo)Issue8665(int, char)public Issue8665(int foo, char bar)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1873,7 +1873,7 @@ }, { "Number": 22, - "Text": "22 / 82Parametersfoo int\uF1C5bar char\uF1C5Parametersfoo int\uF1C5bar char\uF1C5baz string\uF1C5PropertiesProperty Valuechar\uF1C5Property Valuestring\uF1C5Issue8665(int, char, string)public Issue8665(int foo, char bar, string baz)Barpublic char Bar { get; }Bazpublic string Baz { get; }", + "Text": "22 / 85Parametersfoo int\uF1C5bar char\uF1C5Parametersfoo int\uF1C5bar char\uF1C5baz string\uF1C5PropertiesProperty Valuechar\uF1C5Property Valuestring\uF1C5Issue8665(int, char, string)public Issue8665(int foo, char bar, string baz)Barpublic char Bar { get; }Bazpublic string Baz { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -1942,7 +1942,7 @@ }, { "Number": 23, - "Text": "23 / 82Property Valueint\uF1C5Foopublic int Foo { get; }", + "Text": "23 / 85Property Valueint\uF1C5Foopublic int Foo { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -1957,7 +1957,7 @@ }, { "Number": 24, - "Text": "24 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Attribute\uF1C5 Class1.Issue8696AttributeInherited MembersAttribute.Equals(object)\uF1C5 , Attribute.GetCustomAttribute(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttribute(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(Assembly)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, bool)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(Module)\uF1C5 , Attribute.GetCustomAttributes(Module, bool)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetHashCode()\uF1C5 ,Attribute.IsDefaultAttribute()\uF1C5 , Attribute.IsDefined(Assembly, Type)\uF1C5 ,Attribute.IsDefined(Assembly, Type, bool)\uF1C5 , Attribute.IsDefined(MemberInfo, Type)\uF1C5 ,Attribute.IsDefined(MemberInfo, Type, bool)\uF1C5 , Attribute.IsDefined(Module, Type)\uF1C5 ,Attribute.IsDefined(Module, Type, bool)\uF1C5 , Attribute.IsDefined(ParameterInfo, Type)\uF1C5 ,Attribute.IsDefined(ParameterInfo, Type, bool)\uF1C5 , Attribute.Match(object)\uF1C5 ,Class Class1.Issue8696Attributepublic class Class1.Issue8696Attribute : Attribute\uF12C\uF12C", + "Text": "24 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Attribute\uF1C5 Class1.Issue8696AttributeInherited MembersAttribute.Equals(object)\uF1C5 , Attribute.GetCustomAttribute(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttribute(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(Assembly)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, bool)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(Module)\uF1C5 , Attribute.GetCustomAttributes(Module, bool)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetHashCode()\uF1C5 ,Attribute.IsDefaultAttribute()\uF1C5 , Attribute.IsDefined(Assembly, Type)\uF1C5 ,Attribute.IsDefined(Assembly, Type, bool)\uF1C5 , Attribute.IsDefined(MemberInfo, Type)\uF1C5 ,Attribute.IsDefined(MemberInfo, Type, bool)\uF1C5 , Attribute.IsDefined(Module, Type)\uF1C5 ,Attribute.IsDefined(Module, Type, bool)\uF1C5 , Attribute.IsDefined(ParameterInfo, Type)\uF1C5 ,Attribute.IsDefined(ParameterInfo, Type, bool)\uF1C5 , Attribute.Match(object)\uF1C5 ,Class Class1.Issue8696Attributepublic class Class1.Issue8696Attribute : Attribute\uF12C\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2332,7 +2332,7 @@ }, { "Number": 25, - "Text": "25 / 82Attribute.TypeId\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsParametersdescription string\uF1C5boundsMin int\uF1C5boundsMax int\uF1C5validGameModes string\uF1C5[]hasMultipleSelections bool\uF1C5enumType Type\uF1C5Issue8696Attribute(string?, int, int, string[]?, bool,Type?)[Class1.Issue8696(\"Changes the name of the server in the server list\", 0, 0, null, false, null)]public Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)", + "Text": "25 / 85Attribute.TypeId\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsParametersdescription string\uF1C5boundsMin int\uF1C5boundsMax int\uF1C5validGameModes string\uF1C5[]hasMultipleSelections bool\uF1C5enumType Type\uF1C5Issue8696Attribute(string?, int, int, string[]?, bool,Type?)[Class1.Issue8696(\"Changes the name of the server in the server list\", 0, 0, null, false, null)]public Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" @@ -2446,7 +2446,7 @@ }, { "Number": 26, - "Text": "26 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8948ImplementsClass1.IIssue8948Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsDoes nothing with generic type T.Type ParametersTA generic type.Class Class1.Issue8948public class Class1.Issue8948 : Class1.IIssue8948\uF12CDoNothing()public void DoNothing()", + "Text": "26 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8948ImplementsClass1.IIssue8948Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsDoes nothing with generic type T.Type ParametersTA generic type.Class Class1.Issue8948public class Class1.Issue8948 : Class1.IIssue8948\uF12CDoNothing()public void DoNothing()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2569,7 +2569,7 @@ }, { "Number": 27, - "Text": "27 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllFieldsValue = 0This is a regular enum value.[Obsolete] OldAndUnusedValue = 1This is old and unused. You shouldn't use it anymore.[Obsolete(\"Use Value\")] OldAndUnusedValue2 = 2This is old and unused. You shouldn't use it anymore.Enum Class1.Issue9260public enum Class1.Issue9260", + "Text": "27 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllFieldsValue = 0This is a regular enum value.[Obsolete] OldAndUnusedValue = 1This is old and unused. You shouldn't use it anymore.[Obsolete(\"Use Value\")] OldAndUnusedValue2 = 2This is old and unused. You shouldn't use it anymore.Enum Class1.Issue9260public enum Class1.Issue9260", "Links": [ { "Goto": { @@ -2602,7 +2602,7 @@ }, { "Number": 28, - "Text": "28 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Class1.TestInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Class1.Testpublic class Class1.Test\uF12C", + "Text": "28 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Class1.TestInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Class1.Testpublic class Class1.Test\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2707,7 +2707,7 @@ }, { "Number": 29, - "Text": "29 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", + "Text": "29 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", "Links": [ { "Goto": { @@ -2740,7 +2740,7 @@ }, { "Number": 30, - "Text": "30 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 InheritdocImplementsIInheritdoc, IDisposable\uF1C5Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsPerforms application-defined tasks associated with freeing, releasing, or resettingunmanaged resources.This method should do something...Class Inheritdocpublic class Inheritdoc : IInheritdoc, IDisposable\uF12CDispose()public void Dispose()Issue7628()public void Issue7628()Issue7629()", + "Text": "30 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 InheritdocImplementsIInheritdoc, IDisposable\uF1C5Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsPerforms application-defined tasks associated with freeing, releasing, or resettingunmanaged resources.This method should do something...Class Inheritdocpublic class Inheritdoc : IInheritdoc, IDisposable\uF12CDispose()public void Dispose()Issue7628()public void Issue7628()Issue7629()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2863,12 +2863,12 @@ }, { "Number": 31, - "Text": "31 / 82This method should do something...public void Issue7629()", + "Text": "31 / 85This method should do something...public void Issue7629()", "Links": [] }, { "Number": 32, - "Text": "32 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Inheritdoc.Issue6366public class Inheritdoc.Issue6366\uF12C", + "Text": "32 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Inheritdoc.Issue6366public class Inheritdoc.Issue6366\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2973,7 +2973,7 @@ }, { "Number": 33, - "Text": "33 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1DerivedInheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 TThis text NOT inherited.parm2 int\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class1public abstract class Inheritdoc.Issue6366.Class1\uF12CTestMethod1(T, int)public abstract T TestMethod1(T parm1, int parm2)", + "Text": "33 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1DerivedInheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 TThis text NOT inherited.parm2 int\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class1public abstract class Inheritdoc.Issue6366.Class1\uF12CTestMethod1(T, int)public abstract T TestMethod1(T parm1, int parm2)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3114,12 +3114,12 @@ }, { "Number": 34, - "Text": "34 / 82ReturnsTThis text inherited.", + "Text": "34 / 85ReturnsTThis text inherited.", "Links": [] }, { "Number": 35, - "Text": "35 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 bool\uF1C5This text NOT inherited.parm2 int\uF1C5This text inherited.Returnsbool\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class2public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1\uF12C\uF12CTestMethod1(bool, int)public override bool TestMethod1(bool parm1, int parm2)", + "Text": "35 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 bool\uF1C5This text NOT inherited.parm2 int\uF1C5This text inherited.Returnsbool\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class2public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1\uF12C\uF12CTestMethod1(bool, int)public override bool TestMethod1(bool parm1, int parm2)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3287,7 +3287,7 @@ }, { "Number": 36, - "Text": "36 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue7035Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsClass Inheritdoc.Issue7035public class Inheritdoc.Issue7035\uF12CA()public void A()B()public void B()", + "Text": "36 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue7035Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsClass Inheritdoc.Issue7035public class Inheritdoc.Issue7035\uF12CA()public void A()B()public void B()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3392,7 +3392,7 @@ }, { "Number": 37, - "Text": "37 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllThis is a test class to have something for DocFX to document.Inheritanceobject\uF1C5 Inheritdoc.Issue7484Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5RemarksWe're going to talk about things now.BoolReturningMethod(bool)Simple method to generate docs for.DoDadA string that could have something.ConstructorsThis is a constructor to document.PropertiesClass Inheritdoc.Issue7484public class Inheritdoc.Issue7484\uF12CIssue7484()public Issue7484()DoDad", + "Text": "37 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllThis is a test class to have something for DocFX to document.Inheritanceobject\uF1C5 Inheritdoc.Issue7484Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5RemarksWe're going to talk about things now.BoolReturningMethod(bool)Simple method to generate docs for.DoDadA string that could have something.ConstructorsThis is a constructor to document.PropertiesClass Inheritdoc.Issue7484public class Inheritdoc.Issue7484\uF12CIssue7484()public Issue7484()DoDad", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3498,7 +3498,7 @@ "PageNumber": 38, "Coordinates": { "Left": 28, - "Top": 554.75 + "Top": 524.75 } } }, @@ -3507,7 +3507,7 @@ "PageNumber": 38, "Coordinates": { "Left": 28, - "Top": 554.75 + "Top": 524.75 } } }, @@ -3516,7 +3516,7 @@ "PageNumber": 38, "Coordinates": { "Left": 28, - "Top": 554.75 + "Top": 524.75 } } }, @@ -3542,7 +3542,7 @@ }, { "Number": 38, - "Text": "38 / 82A string that could have something.Property Valuestring\uF1C5MethodsSimple method to generate docs for.Parameterssource bool\uF1C5A meaningless boolean value, much like most questions in the world.Returnsbool\uF1C5An exactly equivalently meaningless boolean value, much like most answers in the world.RemarksI'd like to take a moment to thank all of those who helped me get to a place where I canwrite documentation like this.public string DoDad { get; }BoolReturningMethod(bool)public bool BoolReturningMethod(bool source)", + "Text": "38 / 85A string that could have something.Property Valuestring\uF1C5This is a test class to have something for DocFX to document.MethodsSimple method to generate docs for.Parameterssource bool\uF1C5A meaningless boolean value, much like most questions in the world.Returnsbool\uF1C5An exactly equivalently meaningless boolean value, much like most answers in the world.RemarksI'd like to take a moment to thank all of those who helped me get to a place where I canwrite documentation like this.public string DoDad { get; }BoolReturningMethod(bool)public bool BoolReturningMethod(bool source)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -3575,7 +3575,7 @@ }, { "Number": 39, - "Text": "39 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue8101Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsCreate a new tween.Parametersfrom int\uF1C5The starting value.to int\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5Class Inheritdoc.Issue8101public class Inheritdoc.Issue8101\uF12CTween(int, int, float, Action)public static object Tween(int from, int to, float duration, Action onChange)", + "Text": "39 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue8101Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsCreate a new tween.Parametersfrom int\uF1C5The starting value.to int\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5Class Inheritdoc.Issue8101public class Inheritdoc.Issue8101\uF12CTween(int, int, float, Action)public static object Tween(int from, int to, float duration, Action onChange)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3725,7 +3725,7 @@ }, { "Number": 40, - "Text": "40 / 82A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Create a new tween.Parametersfrom float\uF1C5The starting value.to float\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5<float\uF1C5>A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Tween(float, float, float, Action<float>)public static object Tween(float from, float to, float duration, Action onChange)", + "Text": "40 / 85A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Create a new tween.Parametersfrom float\uF1C5The starting value.to float\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5<float\uF1C5>A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Tween(float, float, float, Action<float>)public static object Tween(float from, float to, float duration, Action onChange)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3794,7 +3794,7 @@ }, { "Number": 41, - "Text": "41 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5ConstructorsParametersfoo string\uF1C5Struct Inheritdoc.Issue8129public struct Inheritdoc.Issue8129Issue8129(string)public Issue8129(string foo)", + "Text": "41 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5ConstructorsParametersfoo string\uF1C5Struct Inheritdoc.Issue8129public struct Inheritdoc.Issue8129Issue8129(string)public Issue8129(string foo)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -3890,7 +3890,7 @@ }, { "Number": 42, - "Text": "42 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllA nice classInheritanceobject\uF1C5 Issue8725Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsAnother nice operationA nice operationSee AlsoClass1Class Issue8725public class Issue8725\uF12CMoreOperations()public void MoreOperations()MyOperation()public void MyOperation()", + "Text": "42 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllA nice classInheritanceobject\uF1C5 Issue8725Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsAnother nice operationA nice operationSee AlsoClass1Class Issue8725public class Issue8725\uF12CMoreOperations()public void MoreOperations()MyOperation()public void MyOperation()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4004,7 +4004,7 @@ }, { "Number": 43, - "Text": "43 / 82ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", + "Text": "43 / 85ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", "Links": [ { "Goto": { @@ -4037,7 +4037,7 @@ }, { "Number": 44, - "Text": "44 / 82Namespace:BuildFromVBSourceCodeThis is the BaseClassInheritanceobject\uF1C5 BaseClass1DerivedClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 ,object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParameterskeyword Class1ReturnsDateTime\uF1C5Class BaseClass1public abstract class BaseClass1\uF12CWithDeclarationKeyword(Class1)public abstract DateTime WithDeclarationKeyword(Class1 keyword)", + "Text": "44 / 85Namespace:BuildFromVBSourceCodeThis is the BaseClassInheritanceobject\uF1C5 BaseClass1DerivedClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 ,object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParameterskeyword Class1This is the BaseClassReturnsDateTime\uF1C5This is the BaseClassClass BaseClass1public abstract class BaseClass1\uF12CWithDeclarationKeyword(Class1)public abstract DateTime WithDeclarationKeyword(Class1 keyword)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4187,7 +4187,7 @@ }, { "Number": 45, - "Text": "45 / 82Namespace:BuildFromVBSourceCodeThis is summary from vb class...Inheritanceobject\uF1C5 BaseClass1 Class1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 ,object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5FieldsThis is a Value typeField ValueClass1PropertiesProperty ValueClass Class1public class Class1 : BaseClass1\uF12C\uF12CValueClasspublic Class1 ValueClassKeyword[Obsolete(\"This member is obsolete.\", true)]public Class1 Keyword { get; }", + "Text": "45 / 85Namespace:BuildFromVBSourceCodeThis is summary from vb class...Inheritanceobject\uF1C5 BaseClass1 Class1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 ,object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5FieldsThis is a Value typeField ValueClass1This is summary from vb class...PropertiesClass Class1public class Class1 : BaseClass1\uF12C\uF12CValueClasspublic Class1 ValueClassKeyword[Obsolete(\"This member is obsolete.\", true)]public Class1 Keyword { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4337,7 +4337,7 @@ }, { "Number": 46, - "Text": "46 / 82Class1MethodsThis is a FunctionParametersname string\uF1C5Name as the String valueReturnsint\uF1C5Returns AhoooWhat is Sub?Parameterskeyword Class1ReturnsDateTime\uF1C5Value(string)public int Value(string name)WithDeclarationKeyword(Class1)public override DateTime WithDeclarationKeyword(Class1 keyword)", + "Text": "46 / 85Property ValueClass1This is summary from vb class...MethodsThis is a FunctionParametersname string\uF1C5Name as the String valueReturnsint\uF1C5Returns AhoooWhat is Sub?Parameterskeyword Class1This is summary from vb class...ReturnsValue(string)public int Value(string name)WithDeclarationKeyword(Class1)public override DateTime WithDeclarationKeyword(Class1 keyword)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -4357,15 +4357,6 @@ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, { "Goto": { "PageNumber": 45, @@ -4388,11 +4379,26 @@ }, { "Number": 47, - "Text": "47 / 82NamespacesCatLibrary.CoreClassesCatExceptionCatHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see theremarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classComplexICatExtensionIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classTomTom class is only inherit from Object. Not any member inside itself.TomFromBaseClassTomFromBaseClass inherits from @InterfacesIAnimalThis is basic interface of all animal.ICatCat's interfaceDelegatesFakeDelegateFake delegateNamespace CatLibrary", + "Text": "47 / 85DateTime\uF1C5This is summary from vb class...", + "Links": [ + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + } + ] + }, + { + "Number": 48, + "Text": "48 / 85NamespacesCatLibrary.CoreClassesCatExceptionCatHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see theremarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classComplexICatExtensionIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classTomTom class is only inherit from Object. Not any member inside itself.TomFromBaseClassTomFromBaseClass inherits from @InterfacesIAnimalThis is basic interface of all animal.ICatCat's interfaceDelegatesFakeDelegateFake delegateNamespace CatLibrary", "Links": [ { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -4401,7 +4407,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -4410,7 +4416,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -4419,7 +4425,7 @@ }, { "Goto": { - "PageNumber": 58, + "PageNumber": 60, "Type": 2, "Coordinates": { "Top": 0 @@ -4428,7 +4434,7 @@ }, { "Goto": { - "PageNumber": 59, + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 @@ -4437,7 +4443,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -4446,7 +4452,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -4455,7 +4461,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -4464,7 +4470,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -4473,7 +4479,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -4482,7 +4488,7 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, "Type": 2, "Coordinates": { "Top": 0 @@ -4491,7 +4497,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -4500,7 +4506,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -4509,7 +4515,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -4518,7 +4524,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -4527,7 +4533,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -4536,7 +4542,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -4545,7 +4551,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -4555,12 +4561,12 @@ ] }, { - "Number": 48, - "Text": "48 / 82MRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", + "Number": 49, + "Text": "49 / 85MRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", "Links": [ { "Goto": { - "PageNumber": 76, + "PageNumber": 79, "Type": 2, "Coordinates": { "Top": 0 @@ -4569,7 +4575,7 @@ }, { "Goto": { - "PageNumber": 77, + "PageNumber": 80, "Type": 2, "Coordinates": { "Top": 0 @@ -4578,7 +4584,7 @@ }, { "Goto": { - "PageNumber": 77, + "PageNumber": 80, "Type": 2, "Coordinates": { "Top": 0 @@ -4587,7 +4593,7 @@ }, { "Goto": { - "PageNumber": 77, + "PageNumber": 80, "Type": 2, "Coordinates": { "Top": 0 @@ -4597,12 +4603,12 @@ ] }, { - "Number": 49, - "Text": "49 / 82ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", + "Number": 50, + "Text": "50 / 85ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", "Links": [ { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4611,7 +4617,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4620,7 +4626,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4629,7 +4635,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4638,7 +4644,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4647,7 +4653,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4656,7 +4662,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4665,7 +4671,7 @@ }, { "Goto": { - "PageNumber": 56, + "PageNumber": 58, "Type": 2, "Coordinates": { "Top": 0 @@ -4674,7 +4680,7 @@ }, { "Goto": { - "PageNumber": 56, + "PageNumber": 58, "Type": 2, "Coordinates": { "Top": 0 @@ -4683,7 +4689,7 @@ }, { "Goto": { - "PageNumber": 56, + "PageNumber": 58, "Type": 2, "Coordinates": { "Top": 0 @@ -4692,7 +4698,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Type": 2, "Coordinates": { "Top": 0 @@ -4701,7 +4707,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -4710,7 +4716,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -4719,7 +4725,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -4728,7 +4734,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4737,7 +4743,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4746,7 +4752,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4755,7 +4761,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4764,7 +4770,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4773,7 +4779,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4782,7 +4788,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4791,7 +4797,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4800,7 +4806,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -4809,7 +4815,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -4818,7 +4824,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -4827,7 +4833,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -4836,7 +4842,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -4845,7 +4851,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4854,7 +4860,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4863,7 +4869,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4872,7 +4878,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4881,7 +4887,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4890,7 +4896,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4899,7 +4905,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4909,8 +4915,8 @@ ] }, { - "Number": 50, - "Text": "50 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllStruct ContainersRefTypeInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5Extension MethodsIssue231.Bar(ContainersRefType) , Issue231.Foo(ContainersRefType)FieldsColorCountField Valuelong\uF1C5PropertiesGetColorCountStruct ContainersRefTypepublic struct ContainersRefTypeColorCountpublic long ColorCountGetColorCountpublic long GetColorCount { get; }", + "Number": 51, + "Text": "51 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllStruct ContainersRefTypeInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5Extension MethodsIssue231.Bar(ContainersRefType) , Issue231.Foo(ContainersRefType)FieldsColorCountField Valuelong\uF1C5Struct ContainersRefTypePropertiesGetColorCountStruct ContainersRefTypepublic struct ContainersRefTypeColorCountpublic long ColorCountGetColorCount", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -4977,7 +4983,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -4986,7 +4992,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -4995,7 +5001,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5004,7 +5010,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 410.75 @@ -5013,7 +5019,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 410.75 @@ -5022,7 +5028,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 410.75 @@ -5031,7 +5037,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 410.75 @@ -5040,7 +5046,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 235.24994 @@ -5049,7 +5055,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 235.24994 @@ -5058,7 +5064,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 235.24994 @@ -5067,7 +5073,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 235.24994 @@ -5077,8 +5083,8 @@ ] }, { - "Number": 51, - "Text": "51 / 82Property Valuelong\uF1C5MethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Returnsint\uF1C5EventsEvent TypeEventHandler\uF1C5ContainersRefTypeNonRefMethod(params object[])public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)ContainersRefTypeEventHandlerpublic event EventHandler ContainersRefTypeEventHandler", + "Number": 52, + "Text": "52 / 85Property Valuelong\uF1C5Struct ContainersRefTypeMethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Struct ContainersRefTypeReturnsint\uF1C5Struct ContainersRefTypeEventsEvent Typepublic long GetColorCount { get; }ContainersRefTypeNonRefMethod(params object[])public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)ContainersRefTypeEventHandlerpublic event EventHandler ContainersRefTypeEventHandler", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -5106,7 +5112,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, + } + ] + }, + { + "Number": 53, + "Text": "53 / 85EventHandler\uF1C5Struct ContainersRefType", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" }, @@ -5119,12 +5131,12 @@ ] }, { - "Number": 52, - "Text": "52 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", + "Number": 54, + "Text": "54 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", "Links": [ { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5133,7 +5145,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5142,7 +5154,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5152,8 +5164,8 @@ ] }, { - "Number": 53, - "Text": "53 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ContainersRefType.ContainersRefTypeChildInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ClassContainersRefType.ContainersRefTypeChildpublic class ContainersRefType.ContainersRefTypeChild\uF12C", + "Number": 55, + "Text": "55 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ContainersRefType.ContainersRefTypeChildInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ClassContainersRefType.ContainersRefTypeChildpublic class ContainersRefType.ContainersRefTypeChild\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5229,7 +5241,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5238,7 +5250,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5247,7 +5259,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5257,12 +5269,12 @@ ] }, { - "Number": 54, - "Text": "54 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", + "Number": 56, + "Text": "56 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", "Links": [ { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5271,7 +5283,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5280,7 +5292,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5290,12 +5302,12 @@ ] }, { - "Number": 55, - "Text": "55 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", + "Number": 57, + "Text": "57 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", "Links": [ { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5304,7 +5316,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5313,7 +5325,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5323,8 +5335,8 @@ ] }, { - "Number": 56, - "Text": "56 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ExplicitLayoutClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class ExplicitLayoutClasspublic class ExplicitLayoutClass\uF12C", + "Number": 58, + "Text": "58 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ExplicitLayoutClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class ExplicitLayoutClasspublic class ExplicitLayoutClass\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5400,7 +5412,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5409,7 +5421,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5418,7 +5430,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5428,8 +5440,8 @@ ] }, { - "Number": 57, - "Text": "57 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.dllInheritanceobject\uF1C5 Issue231Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParametersc ContainersRefTypeParametersc ContainersRefTypeClass Issue231public static class Issue231\uF12CBar(ContainersRefType)public static void Bar(this ContainersRefType c)Foo(ContainersRefType)public static void Foo(this ContainersRefType c)", + "Number": 59, + "Text": "59 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.dllInheritanceobject\uF1C5 Issue231Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParametersc ContainersRefTypeParametersc ContainersRefTypeClass Issue231public static class Issue231\uF12CBar(ContainersRefType)public static void Bar(this ContainersRefType c)Foo(ContainersRefType)public static void Foo(this ContainersRefType c)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5505,7 +5517,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5514,7 +5526,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5523,7 +5535,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5532,7 +5544,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5541,7 +5553,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5550,7 +5562,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5559,7 +5571,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5568,7 +5580,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5577,7 +5589,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5587,8 +5599,8 @@ ] }, { - "Number": 58, - "Text": "58 / 82Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTInheritanceobject\uF1C5 Exception\uF1C5 CatExceptionImplementsISerializable\uF1C5Inherited MembersException.GetBaseException()\uF1C5 ,Exception.GetObjectData(SerializationInfo, StreamingContext)\uF1C5 , Exception.GetType()\uF1C5 ,Exception.ToString()\uF1C5 , Exception.Data\uF1C5 , Exception.HelpLink\uF1C5 , Exception.HResult\uF1C5 ,Exception.InnerException\uF1C5 , Exception.Message\uF1C5 , Exception.Source\uF1C5 ,Exception.StackTrace\uF1C5 , Exception.TargetSite\uF1C5 , Exception.SerializeObjectState\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Class CatExceptionpublic class CatException : Exception, ISerializable\uF12C\uF12C", + "Number": 60, + "Text": "60 / 85Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTInheritanceobject\uF1C5 Exception\uF1C5 CatExceptionImplementsISerializable\uF1C5Inherited MembersException.GetBaseException()\uF1C5 ,Exception.GetObjectData(SerializationInfo, StreamingContext)\uF1C5 , Exception.GetType()\uF1C5 ,Exception.ToString()\uF1C5 , Exception.Data\uF1C5 , Exception.HelpLink\uF1C5 , Exception.HResult\uF1C5 ,Exception.InnerException\uF1C5 , Exception.Message\uF1C5 , Exception.Source\uF1C5 ,Exception.StackTrace\uF1C5 , Exception.TargetSite\uF1C5 , Exception.SerializeObjectState\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Class CatExceptionpublic class CatException : Exception, ISerializable\uF12C\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5781,7 +5793,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5790,7 +5802,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5800,8 +5812,8 @@ ] }, { - "Number": 59, - "Text": "59 / 82Namespace:CatLibraryAssembly:CatLibrary.dllHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see theremarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classThis is a class talking about CAT\uF1C5.NOTE This is a CAT classRefer to IAnimal to see other animals.Type ParametersTThis type should be class and can new instance.KThis type is a struct type, class type can't be used for this parameter.Inheritanceobject\uF1C5 CatImplementsICat, IAnimalInherited MembersClass Cat[Serializable][Obsolete]public class Cat : ICat, IAnimal where T : class, new() where K : struct\uF12C", + "Number": 61, + "Text": "61 / 85Namespace:CatLibraryAssembly:CatLibrary.dllHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see theremarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classThis is a class talking about CAT\uF1C5.NOTE This is a CAT classRefer to IAnimal to see other animals.Type ParametersTThis type should be class and can new instance.KThis type is a struct type, class type can't be used for this parameter.Inheritanceobject\uF1C5 CatImplementsICat, IAnimalInherited MembersClass Cat[Serializable][Obsolete]public class Cat : ICat, IAnimal where T : class, new() where K : struct\uF12C", "Links": [ { "Uri": "https://en.wikipedia.org/wiki/Cat" @@ -5823,7 +5835,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5832,7 +5844,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5841,7 +5853,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -5850,7 +5862,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -5859,7 +5871,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5868,7 +5880,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -5877,7 +5889,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5887,8 +5899,8 @@ ] }, { - "Number": 60, - "Text": "60 / 82object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)ExamplesHere's example of how to create an instance of this class. As T is limited with class and K islimited with struct.As you see, here we bring in pointer so we need to add unsafe keyword.RemarksTHIS is remarks overridden in MARKDWON fileConstructorsDefault constructor.It's a complex constructor. The parameter will have some attributes.Parametersvar a = new Cat(object, int)();int catNumber = new int();unsafe{ a.GetFeetLength(catNumber);}Cat()public Cat()Cat(string, out int, string, bool)public Cat(string nickName, out int age, string realName, bool isHealthy)", + "Number": 62, + "Text": "62 / 85object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)ExamplesHere's example of how to create an instance of this class. As T is limited with class and K islimited with struct.As you see, here we bring in pointer so we need to add unsafe keyword.RemarksTHIS is remarks overridden in MARKDWON fileConstructorsDefault constructor.It's a complex constructor. The parameter will have some attributes.Parametersvar a = new Cat(object, int)();int catNumber = new int();unsafe{ a.GetFeetLength(catNumber);}Cat()public Cat()Cat(string, out int, string, bool)public Cat(string nickName, out int age, string realName, bool isHealthy)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" @@ -5946,7 +5958,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -5955,7 +5967,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -5964,7 +5976,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -5973,7 +5985,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -5982,7 +5994,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -5991,7 +6003,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6000,7 +6012,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6009,7 +6021,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6018,7 +6030,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6027,7 +6039,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6036,7 +6048,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6045,7 +6057,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6055,8 +6067,8 @@ ] }, { - "Number": 61, - "Text": "61 / 82nickName string\uF1C5it's string type.age int\uF1C5It's an out and ref parameter.realName string\uF1C5It's an out paramter.isHealthy bool\uF1C5It's an in parameter.Constructor with one generic parameter.ParametersownType TThis parameter type defined by class.FieldsField with attribute.Field ValueCat(T)public Cat(T ownType)isHealthy[ContextStatic][NonSerialized][Obsolete]public bool isHealthy", + "Number": 63, + "Text": "63 / 85nickName string\uF1C5it's string type.age int\uF1C5It's an out and ref parameter.realName string\uF1C5It's an out paramter.isHealthy bool\uF1C5It's an in parameter.Constructor with one generic parameter.ParametersownType TThis parameter type defined by class.FieldsField with attribute.Field ValueCat(T)public Cat(T ownType)isHealthy[ContextStatic][NonSerialized][Obsolete]public bool isHealthy", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -6097,8 +6109,8 @@ ] }, { - "Number": 62, - "Text": "62 / 82bool\uF1C5PropertiesHint cat's age.Property Valueint\uF1C5This is index property of Cat. You can see that the visibility is different between get and setmethod.Parametersa string\uF1C5Cat's name.Property Valueint\uF1C5Cat's number.EII property.Age[Obsolete]protected int Age { get; set; }this[string]public int this[string a] { protected get; set; }Name", + "Number": 64, + "Text": "64 / 85bool\uF1C5Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassPropertiesHint cat's age.Property Valueint\uF1C5Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassThis is index property of Cat. You can see that the visibility is different between get and setmethod.Parametersa string\uF1C5Cat's name.Age[Obsolete]protected int Age { get; set; }this[string]public int this[string a] { protected get; set; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" @@ -6126,7 +6138,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, + } + ] + }, + { + "Number": 65, + "Text": "65 / 85Property Valueint\uF1C5Cat's number.EII property.Property Valuestring\uF1C5Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassMethodsIt's an overridden summary in markdown formatThis is overriding methods. You can override parameter descriptions for methods, you caneven add exceptions to methods. Check the intermediate obj folder to see the data modelof the generated method/class. Override Yaml header should follow the data structure.Parametersdate DateTime\uF1C5This is overridden description for a parameter. id must be specified.Namepublic string Name { get; }Override CalculateFood Namepublic Dictionary> CalculateFood(DateTime date)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, @@ -6135,13 +6153,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - } - ] - }, - { - "Number": 63, - "Text": "63 / 82Property Valuestring\uF1C5MethodsIt's an overridden summary in markdown formatThis is overriding methods. You can override parameter descriptions for methods, you caneven add exceptions to methods. Check the intermediate obj folder to see the data modelof the generated method/class. Override Yaml header should follow the data structure.Parametersdate DateTime\uF1C5This is overridden description for a parameter. id must be specified.ReturnsDictionary\uF1C5>It's overridden description for return. type must be specified.ExceptionsArgumentException\uF1C5This is an overridden argument exception. you can add additional exception by addingdifferent exception type.public string Name { get; }Override CalculateFood Namepublic Dictionary> CalculateFood(DateTime date)Equals(object)", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" }, @@ -6159,7 +6171,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, + } + ] + }, + { + "Number": 66, + "Text": "66 / 85ReturnsDictionary\uF1C5>It's overridden description for return. type must be specified.ExceptionsArgumentException\uF1C5This is an overridden argument exception. you can add additional exception by addingdifferent exception type.Override the method of Object.Equals(object obj).Parametersobj object\uF1C5Can pass any class type.Returnsbool\uF1C5The return value tell you whehter the compare operation is successful.It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword.ParametersEquals(object)public override bool Equals(object obj)GetTailLength(int*, params object[])public long GetTailLength(int* catName, params object[] parameters)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" }, @@ -6204,13 +6222,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - } - ] - }, - { - "Number": 64, - "Text": "64 / 82Override the method of Object.Equals(object obj).Parametersobj object\uF1C5Can pass any class type.Returnsbool\uF1C5The return value tell you whehter the compare operation is successful.It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword.ParameterscatName int\uF1C5*Thie represent for cat name length.parameters object\uF1C5[]Optional parameters.Returnslong\uF1C5Return cat tail's length.public override bool Equals(object obj)GetTailLength(int*, params object[])public long GetTailLength(int* catName, params object[] parameters)Jump(T, K, ref bool)", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" }, @@ -6228,7 +6240,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, + } + ] + }, + { + "Number": 67, + "Text": "67 / 85catName int\uF1C5*Thie represent for cat name length.parameters object\uF1C5[]Optional parameters.Returnslong\uF1C5Return cat tail's length.This method have attribute above it.ParametersownType TType come from class define.anotherOwnType KType come from class define.cheat bool\uF1C5Hint whether this cat has cheat mode.ExceptionsArgumentException\uF1C5This is an argument exceptionJump(T, K, ref bool)[Conditional(\"Debug\")]public void Jump(T ownType, K anotherOwnType, ref bool cheat)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, @@ -6255,13 +6273,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - } - ] - }, - { - "Number": 65, - "Text": "65 / 82This method have attribute above it.ParametersownType TType come from class define.anotherOwnType KType come from class define.cheat bool\uF1C5Hint whether this cat has cheat mode.ExceptionsArgumentException\uF1C5This is an argument exceptionEventsEat event of this catEvent TypeEventHandler\uF1C5Operators[Conditional(\"Debug\")]public void Jump(T ownType, K anotherOwnType, ref bool cheat)ownEat[Obsolete(\"This _event handler_ is deprecated.\")]public event EventHandler ownEat", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" }, @@ -6279,7 +6291,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, + } + ] + }, + { + "Number": 68, + "Text": "68 / 85EventsEat event of this catEvent TypeEventHandler\uF1C5Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassOperatorsAddition operator of this class.Parameterslsr Cat..rsr int\uF1C5~~Returnsint\uF1C5ownEat[Obsolete(\"This _event handler_ is deprecated.\")]public event EventHandler ownEatoperator +(Cat, int)public static int operator +(Cat lsr, int rsr)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" }, @@ -6288,13 +6306,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - } - ] - }, - { - "Number": 66, - "Text": "66 / 82Addition operator of this class.Parameterslsr Cat..rsr int\uF1C5~~Returnsint\uF1C5Result with int type.Expilicit operator of this class.It means this cat can evolve to change to Tom. Tom and Jerry.Parameterssrc CatInstance of this class.ReturnsTomAdvanced class type of cat.operator +(Cat, int)public static int operator +(Cat lsr, int rsr)explicit operator Tom(Cat)public static explicit operator Tom(Cat src)", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, @@ -6315,16 +6327,31 @@ }, { "Goto": { - "PageNumber": 59, + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 } } + } + ] + }, + { + "Number": 69, + "Text": "69 / 85Result with int type.Expilicit operator of this class.It means this cat can evolve to change to Tom. Tom and Jerry.Parameterssrc CatInstance of this class.ReturnsTomAdvanced class type of cat.Similar with operaotr +, refer to that topic.Parameterslsr CatHere's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassrsr int\uF1C5explicit operator Tom(Cat)public static explicit operator Tom(Cat src)operator -(Cat, int)public static int operator -(Cat lsr, int rsr)", + "Links": [ + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, { "Goto": { - "PageNumber": 59, + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 @@ -6333,7 +6360,16 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, + "Type": 2, + "Coordinates": { + "Top": 0 + } + } + }, + { + "Goto": { + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 @@ -6343,8 +6379,8 @@ ] }, { - "Number": 67, - "Text": "67 / 82Similar with operaotr +, refer to that topic.Parameterslsr Catrsr int\uF1C5Returnsint\uF1C5operator -(Cat, int)public static int operator -(Cat lsr, int rsr)", + "Number": 70, + "Text": "70 / 85Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassReturnsint\uF1C5Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclass", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6354,30 +6390,12 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Goto": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } } ] }, { - "Number": 68, - "Text": "68 / 82Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTJInheritanceobject\uF1C5 ComplexInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Complexpublic class Complex\uF12C", + "Number": 71, + "Text": "71 / 85Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTJInheritanceobject\uF1C5 ComplexInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Complexpublic class Complex\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -6453,7 +6471,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6462,7 +6480,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6472,8 +6490,8 @@ ] }, { - "Number": 69, - "Text": "69 / 82Namespace:CatLibraryAssembly:CatLibrary.dllFake delegateParametersnum long\uF1C5Fake paraname string\uF1C5Fake parascores object\uF1C5[]Optional Parameter.Returnsint\uF1C5Return a fake number to confuse you.Type ParametersTFake paraDelegate FakeDelegatepublic delegate int FakeDelegate(long num, string name, params object[] scores)", + "Number": 72, + "Text": "72 / 85Namespace:CatLibraryAssembly:CatLibrary.dllFake delegateParametersnum long\uF1C5Fake paraname string\uF1C5Fake parascores object\uF1C5[]Optional Parameter.Returnsint\uF1C5Return a fake number to confuse you.Type ParametersTFake paraDelegate FakeDelegatepublic delegate int FakeDelegate(long num, string name, params object[] scores)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -6513,7 +6531,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6522,7 +6540,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6532,8 +6550,8 @@ ] }, { - "Number": 70, - "Text": "70 / 82Namespace:CatLibraryAssembly:CatLibrary.dllThis is basic interface of all animal.Welcome to the Animal world!RemarksTHIS is remarks overridden in MARKDWON filePropertiesReturn specific number animal's name.Parametersindex int\uF1C5Animal number.Property Valuestring\uF1C5Animal name.Name of Animal.Interface IAnimalpublic interface IAnimalthis[int]string this[int index] { get; }Name", + "Number": 73, + "Text": "73 / 85Namespace:CatLibraryAssembly:CatLibrary.dllThis is basic interface of all animal.Welcome to the Animal world!RemarksTHIS is remarks overridden in MARKDWON filePropertiesReturn specific number animal's name.Parametersindex int\uF1C5Animal number.Property Valuestring\uF1C5Animal name.Name of Animal.Interface IAnimalpublic interface IAnimalthis[int]string this[int index] { get; }Name", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6555,7 +6573,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6564,7 +6582,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6574,8 +6592,8 @@ ] }, { - "Number": 71, - "Text": "71 / 82Property Valuestring\uF1C5MethodsAnimal's eat method.Feed the animal with some foodParametersfood string\uF1C5Food to eatOverload method of eat. This define the animal eat by which tool.Parameterstool Toolstring Name { get; }Eat()void Eat()Eat(string)void Eat(string food)Eat(Tool)void Eat(Tool tool) where Tool : class", + "Number": 74, + "Text": "74 / 85Property Valuestring\uF1C5This is basic interface of all animal.MethodsAnimal's eat method.Feed the animal with some foodParametersfood string\uF1C5Food to eatOverload method of eat. This define the animal eat by which tool.Parametersstring Name { get; }Eat()void Eat()Eat(string)void Eat(string food)Eat(Tool)void Eat(Tool tool) where Tool : class", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -6598,13 +6616,13 @@ ] }, { - "Number": 72, - "Text": "72 / 82Tool name.Type ParametersToolIt's a class type.", + "Number": 75, + "Text": "75 / 85tool ToolTool name.Type ParametersToolIt's a class type.", "Links": [] }, { - "Number": 73, - "Text": "73 / 82Namespace:CatLibraryAssembly:CatLibrary.dllCat's interfaceInherited MembersIAnimal.Name , IAnimal.this[int] , IAnimal.Eat() , IAnimal.Eat(Tool) ,IAnimal.Eat(string)Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)Eventseat event of cat. Every cat must implement this event.Event TypeEventHandler\uF1C5Interface ICatpublic interface ICat : IAnimaleatevent EventHandler eat", + "Number": 76, + "Text": "76 / 85Namespace:CatLibraryAssembly:CatLibrary.dllCat's interfaceInherited MembersIAnimal.Name , IAnimal.this[int] , IAnimal.Eat() , IAnimal.Eat(Tool) ,IAnimal.Eat(string)Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)Eventseat event of cat. Every cat must implement this event.Event TypeEventHandler\uF1C5Cat's interfaceInterface ICatpublic interface ICat : IAnimaleatevent EventHandler eat", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" @@ -6617,7 +6635,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6626,7 +6644,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6635,7 +6653,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Coordinates": { "Left": 28, "Top": 90.499939 @@ -6644,7 +6662,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Coordinates": { "Left": 28, "Top": 90.499939 @@ -6653,7 +6671,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Coordinates": { "Left": 28, "Top": 425.75 @@ -6662,7 +6680,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Coordinates": { "Left": 28, "Top": 425.75 @@ -6671,52 +6689,52 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 74, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, { "Goto": { - "PageNumber": 71, + "PageNumber": 74, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, { "Goto": { - "PageNumber": 71, + "PageNumber": 74, "Coordinates": { "Left": 28, - "Top": 214.24994 + "Top": 184.24994 } } }, { "Goto": { - "PageNumber": 71, + "PageNumber": 74, "Coordinates": { "Left": 28, - "Top": 449.74994 + "Top": 419.74994 } } }, { "Goto": { - "PageNumber": 71, + "PageNumber": 74, "Coordinates": { "Left": 28, - "Top": 449.74994 + "Top": 419.74994 } } }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6725,7 +6743,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6734,7 +6752,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6743,7 +6761,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6752,7 +6770,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6761,7 +6779,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6770,7 +6788,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6779,7 +6797,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6788,7 +6806,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6797,7 +6815,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6806,7 +6824,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6815,7 +6833,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6825,8 +6843,8 @@ ] }, { - "Number": 74, - "Text": "74 / 82Namespace:CatLibraryAssembly:CatLibrary.dllIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classInheritanceobject\uF1C5 ICatExtensionInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsExtension method to let cat playParametersicat ICatCattoy ContainersRefType.ColorTypeSomething to playClass ICatExtensionpublic static class ICatExtension\uF12CPlay(ICat, ColorType)public static void Play(this ICat icat, ContainersRefType.ColorType toy)", + "Number": 77, + "Text": "77 / 85Namespace:CatLibraryAssembly:CatLibrary.dllIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classInheritanceobject\uF1C5 ICatExtensionInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsExtension method to let cat playParametersicat ICatCattoy ContainersRefType.ColorTypeSomething to playClass ICatExtensionpublic static class ICatExtension\uF12CPlay(ICat, ColorType)public static void Play(this ICat icat, ContainersRefType.ColorType toy)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -6902,7 +6920,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6911,7 +6929,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6920,7 +6938,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -6929,7 +6947,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -6938,7 +6956,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -6947,7 +6965,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -6956,7 +6974,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -6965,7 +6983,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -6975,8 +6993,8 @@ ] }, { - "Number": 75, - "Text": "75 / 82Extension method hint that how long the cat can sleep.Parametersicat ICatThe type will be extended.hours long\uF1C5The length of sleep.Sleep(ICat, long)public static void Sleep(this ICat icat, long hours)", + "Number": 78, + "Text": "78 / 85Extension method hint that how long the cat can sleep.Parametersicat ICatThe type will be extended.hours long\uF1C5The length of sleep.Sleep(ICat, long)public static void Sleep(this ICat icat, long hours)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -6989,7 +7007,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -6999,12 +7017,12 @@ ] }, { - "Number": 76, - "Text": "76 / 82Namespace:CatLibraryAssembly:CatLibrary.dllGeneric delegate with many constrains.Parametersk KType K.t TType T.l LType L.Type ParametersKGeneric K.TGeneric T.LGeneric L.Delegate MRefDelegatepublic delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable", + "Number": 79, + "Text": "79 / 85Namespace:CatLibraryAssembly:CatLibrary.dllGeneric delegate with many constrains.Parametersk KType K.t TType T.l LType L.Type ParametersKGeneric K.TGeneric T.LGeneric L.Delegate MRefDelegatepublic delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable", "Links": [ { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7013,7 +7031,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7023,8 +7041,8 @@ ] }, { - "Number": 77, - "Text": "77 / 82Namespace:CatLibraryAssembly:CatLibrary.dllDelegate in the namespaceParameterspics List\uF1C5a name list of pictures.name string\uF1C5give out the needed name.Delegate MRefNormalDelegatepublic delegate void MRefNormalDelegate(List pics, out string name)", + "Number": 80, + "Text": "80 / 85Namespace:CatLibraryAssembly:CatLibrary.dllDelegate in the namespaceParameterspics List\uF1C5a name list of pictures.name string\uF1C5give out the needed name.Delegate MRefNormalDelegatepublic delegate void MRefNormalDelegate(List pics, out string name)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" @@ -7055,7 +7073,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7064,7 +7082,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7074,8 +7092,8 @@ ] }, { - "Number": 78, - "Text": "78 / 82Namespace:CatLibraryAssembly:CatLibrary.dllTom class is only inherit from Object. Not any member inside itself.Inheritanceobject\uF1C5 TomDerivedTomFromBaseClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis is a Tom Method with complex type as returnParametersa ComplexA complex inputb Tuple\uF1C5Another complex inputClass Tompublic class Tom\uF12CTomMethod(Complex, Tuple)public Complex TomMethod(Complex a, Tuple b)", + "Number": 81, + "Text": "81 / 85Namespace:CatLibraryAssembly:CatLibrary.dllTom class is only inherit from Object. Not any member inside itself.Inheritanceobject\uF1C5 TomDerivedTomFromBaseClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis is a Tom Method with complex type as returnParametersa ComplexA complex inputb Tuple\uF1C5Another complex inputClass Tompublic class Tom\uF12CTomMethod(Complex, Tuple)public Complex TomMethod(Complex a, Tuple b)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7169,7 +7187,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7178,7 +7196,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7187,7 +7205,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7196,7 +7214,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7205,7 +7223,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7214,7 +7232,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7223,7 +7241,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -7232,7 +7250,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7241,7 +7259,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7250,7 +7268,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7259,7 +7277,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7268,7 +7286,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7277,7 +7295,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7286,7 +7304,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7295,7 +7313,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7304,7 +7322,7 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, "Type": 2, "Coordinates": { "Top": 0 @@ -7314,8 +7332,8 @@ ] }, { - "Number": 79, - "Text": "79 / 82ReturnsComplexComplex TomFromBaseClassExceptionsNotImplementedException\uF1C5This is not implementedArgumentException\uF1C5This is the exception to be thrown when implementedCatExceptionThis is the exception in current documentation", + "Number": 82, + "Text": "82 / 85ReturnsComplexComplex TomFromBaseClassExceptionsNotImplementedException\uF1C5This is not implementedArgumentException\uF1C5This is the exception to be thrown when implementedCatExceptionThis is the exception in current documentation", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -7346,7 +7364,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -7355,7 +7373,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7364,7 +7382,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7373,7 +7391,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7382,7 +7400,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7391,7 +7409,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7400,7 +7418,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7409,7 +7427,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7418,7 +7436,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7427,7 +7445,7 @@ }, { "Goto": { - "PageNumber": 58, + "PageNumber": 60, "Type": 2, "Coordinates": { "Top": 0 @@ -7436,7 +7454,7 @@ }, { "Goto": { - "PageNumber": 58, + "PageNumber": 60, "Type": 2, "Coordinates": { "Top": 0 @@ -7446,8 +7464,8 @@ ] }, { - "Number": 80, - "Text": "80 / 82Namespace:CatLibraryAssembly:CatLibrary.dllTomFromBaseClass inherits from @Inheritanceobject\uF1C5 Tom TomFromBaseClassInherited MembersTom.TomMethod(Complex, Tuple) ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ConstructorsThis is a #ctor with parameterParametersk int\uF1C5Class TomFromBaseClasspublic class TomFromBaseClass : Tom\uF12C\uF12CTomFromBaseClass(int)public TomFromBaseClass(int k)", + "Number": 83, + "Text": "83 / 85Namespace:CatLibraryAssembly:CatLibrary.dllTomFromBaseClass inherits from @Inheritanceobject\uF1C5 Tom TomFromBaseClassInherited MembersTom.TomMethod(Complex, Tuple) ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ConstructorsThis is a #ctor with parameterParametersk int\uF1C5Class TomFromBaseClasspublic class TomFromBaseClass : Tom\uF12C\uF12CTomFromBaseClass(int)public TomFromBaseClass(int k)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7532,7 +7550,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7541,7 +7559,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7550,7 +7568,7 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, "Type": 2, "Coordinates": { "Top": 0 @@ -7559,7 +7577,7 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, "Coordinates": { "Left": 28, "Top": 332.75 @@ -7569,12 +7587,12 @@ ] }, { - "Number": 81, - "Text": "81 / 82EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", + "Number": 84, + "Text": "84 / 85EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", "Links": [ { "Goto": { - "PageNumber": 82, + "PageNumber": 85, "Type": 2, "Coordinates": { "Top": 0 @@ -7583,7 +7601,7 @@ }, { "Goto": { - "PageNumber": 82, + "PageNumber": 85, "Type": 2, "Coordinates": { "Top": 0 @@ -7593,8 +7611,8 @@ ] }, { - "Number": 82, - "Text": "82 / 82Namespace:MRef.Demo.EnumerationAssembly:CatLibrary.dllEnumeration ColorTypeFieldsRed = 0this color is redBlue = 1blue like riverYellow = 2yellow comes from desertRemarksRed/Blue/Yellow can become all color you want.See Alsoobject\uF1C5Enum ColorTypepublic enum ColorType", + "Number": 85, + "Text": "85 / 85Namespace:MRef.Demo.EnumerationAssembly:CatLibrary.dllEnumeration ColorTypeFieldsRed = 0this color is redBlue = 1blue like riverYellow = 2yellow comes from desertRemarksRed/Blue/Yellow can become all color you want.See Alsoobject\uF1C5Enum ColorTypepublic enum ColorType", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7613,7 +7631,7 @@ }, { "Goto": { - "PageNumber": 81, + "PageNumber": 84, "Type": 2, "Coordinates": { "Top": 0 @@ -7982,7 +8000,7 @@ "Title": "ContainersRefType", "Children": [], "Destination": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -7993,7 +8011,7 @@ "Title": "ContainersRefType.ColorType", "Children": [], "Destination": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -8004,7 +8022,7 @@ "Title": "ContainersRefType.ContainersRefTypeChild", "Children": [], "Destination": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -8015,7 +8033,7 @@ "Title": "ContainersRefType.ContainersRefTypeChildInterface", "Children": [], "Destination": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -8026,7 +8044,7 @@ "Title": "ContainersRefType.ContainersRefTypeDelegate", "Children": [], "Destination": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -8037,7 +8055,7 @@ "Title": "ExplicitLayoutClass", "Children": [], "Destination": { - "PageNumber": 56, + "PageNumber": 58, "Type": 2, "Coordinates": { "Top": 0 @@ -8048,7 +8066,7 @@ "Title": "Issue231", "Children": [], "Destination": { - "PageNumber": 57, + "PageNumber": 59, "Type": 2, "Coordinates": { "Top": 0 @@ -8057,7 +8075,7 @@ } ], "Destination": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -8068,7 +8086,7 @@ "Title": "CatException", "Children": [], "Destination": { - "PageNumber": 58, + "PageNumber": 60, "Type": 2, "Coordinates": { "Top": 0 @@ -8079,7 +8097,7 @@ "Title": "Cat", "Children": [], "Destination": { - "PageNumber": 59, + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 @@ -8090,7 +8108,7 @@ "Title": "Complex", "Children": [], "Destination": { - "PageNumber": 68, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -8101,7 +8119,7 @@ "Title": "FakeDelegate", "Children": [], "Destination": { - "PageNumber": 69, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -8112,7 +8130,7 @@ "Title": "IAnimal", "Children": [], "Destination": { - "PageNumber": 70, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -8123,7 +8141,7 @@ "Title": "ICat", "Children": [], "Destination": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -8134,7 +8152,7 @@ "Title": "ICatExtension", "Children": [], "Destination": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -8145,7 +8163,7 @@ "Title": "MRefDelegate", "Children": [], "Destination": { - "PageNumber": 76, + "PageNumber": 79, "Type": 2, "Coordinates": { "Top": 0 @@ -8156,7 +8174,7 @@ "Title": "MRefNormalDelegate", "Children": [], "Destination": { - "PageNumber": 77, + "PageNumber": 80, "Type": 2, "Coordinates": { "Top": 0 @@ -8167,7 +8185,7 @@ "Title": "Tom", "Children": [], "Destination": { - "PageNumber": 78, + "PageNumber": 81, "Type": 2, "Coordinates": { "Top": 0 @@ -8178,7 +8196,7 @@ "Title": "TomFromBaseClass", "Children": [], "Destination": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -8187,7 +8205,7 @@ } ], "Destination": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -8201,7 +8219,7 @@ "Title": "ColorType", "Children": [], "Destination": { - "PageNumber": 82, + "PageNumber": 85, "Type": 2, "Coordinates": { "Top": 0 @@ -8210,7 +8228,7 @@ } ], "Destination": { - "PageNumber": 81, + "PageNumber": 84, "Type": 2, "Coordinates": { "Top": 0 diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromAssembly.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromAssembly.Class1.html.view.verified.json index 56866c1d964..1638a8311e9 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromAssembly.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromAssembly.Class1.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "This is a test class.", "title": "Class Class1", "content": "

Class Class1

\r\n
\r\n
Namespace
BuildFromAssembly
Assembly
BuildFromAssembly.dll
\r\n

This is a test class.

\n
public class Class1

Inheritance

\r\n
\nobject\n
\n
\nClass1\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Constructors

Class1()

\r\n
public Class1()

Methods

HelloWorld()

\r\n

Hello World.

\n
public static void HelloWorld()
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json index 2ec4d89fc0b..77cda1b8889 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "This is a test class to have something for DocFX to document.", "title": "Class Inheritdoc.Issue7484", "content": "

Class Inheritdoc.Issue7484

\r\n
\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n

This is a test class to have something for DocFX to document.

\n
public class Inheritdoc.Issue7484

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Remarks

We're going to talk about things now.

\n
\nSimple method to generate docs for.\n
\nA string that could have something.\n
\n

Constructors

Issue7484()

\r\n

This is a constructor to document.

\n
public Issue7484()

Properties

DoDad

\r\n

A string that could have something.

\n
public string DoDad { get; }

Property Value

string
\r\n
\r\n\r\n\r\n\r\n

Methods

BoolReturningMethod(bool)

\r\n

Simple method to generate docs for.

\n
public bool BoolReturningMethod(bool source)

Parameters

source bool
\r\n
\r\n\r\n\r\n

A meaningless boolean value, much like most questions in the world.

\n\r\n

Returns

bool
\r\n
\r\n\r\n\r\n

An exactly equivalently meaningless boolean value, much like most answers in the world.

\n\r\n

Remarks

I'd like to take a moment to thank all of those who helped me get to\na place where I can write documentation like this.

\n", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromProject.Issue8725.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromProject.Issue8725.html.view.verified.json index 462e442e986..d9fe432c1e7 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromProject.Issue8725.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromProject.Issue8725.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "A nice class", "title": "Class Issue8725", "content": "

Class Issue8725

\r\n
\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n

A nice class

\n
public class Issue8725

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

MoreOperations()

\r\n

Another nice operation

\n
public void MoreOperations()

MyOperation()

\r\n

A nice operation

\n
public void MyOperation()

See Also

\r\n
\nClass1\n
\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json index f0b90669e1e..9dae3ad092e 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "This is the BaseClass", "title": "Class BaseClass1", "content": "

Class BaseClass1

\r\n
\r\n
Namespace
BuildFromVBSourceCode
\r\n

This is the BaseClass

\n
public abstract class BaseClass1

Inheritance

\r\n
\nobject\n
\n\n\r\n

Derived

\r\n
\nClass1\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\r\n

Methods

WithDeclarationKeyword(Class1)

\r\n
public abstract DateTime WithDeclarationKeyword(Class1 keyword)

Parameters

keyword Class1
\r\n
\r\n\r\n\r\n\r\n

Returns

DateTime
\r\n
\r\n\r\n\r\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json index 9c1f3b82fa6..4600c840897 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "This is summary from vb class...", "title": "Class Class1", "content": "

Class Class1

\r\n
\r\n
Namespace
BuildFromVBSourceCode
\r\n

This is summary from vb class...

\n
public class Class1 : BaseClass1

Inheritance

\r\n
\nobject\n
\n\n
\nClass1\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\n\r\n

Fields

ValueClass

\r\n

This is a Value type

\n
public Class1 ValueClass

Field Value

Class1
\r\n
\r\n\r\n\r\n\r\n

Properties

Keyword Deprecated

\r\n\n
[Obsolete("This member is obsolete.", true)]\npublic Class1 Keyword { get; }

Property Value

Class1
\r\n
\r\n\r\n\r\n\r\n

Methods

Value(string)

\r\n

This is a Function

\n
public int Value(string name)

Parameters

name string
\r\n
\r\n\r\n\r\n

Name as the String\nvalue

\n\r\n

Returns

int
\r\n
\r\n\r\n\r\n

Returns\nAhooo

\n\r\n

WithDeclarationKeyword(Class1)

\r\n

What is Sub?

\n
public override DateTime WithDeclarationKeyword(Class1 keyword)

Parameters

keyword Class1
\r\n
\r\n\r\n\r\n\r\n

Returns

DateTime
\r\n
\r\n\r\n\r\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Cat-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Cat-2.html.view.verified.json index 0497743ac2f..5c45d011df6 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Cat-2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Cat-2.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Here's main class of this Demo.\nYou can see mostly type of article within this class and you for more detail, please see the remarks.\n\nthis class is a template class. It has two Generic parameter. they are: T and K.\nThe extension method of this class can refer to class", "title": "Class Cat", "content": "

Class Cat<T, K> Deprecated

\r\n
\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Here's main class of this Demo.

\n

You can see mostly type of article within this class and you for more detail, please see the remarks.

\n

\n

this class is a template class. It has two Generic parameter. they are: T and K.

\n

The extension method of this class can refer to class

\n
[Serializable]\n[Obsolete]\npublic class Cat<T, K> : ICat, IAnimal where T : class, new() where K : struct

Type Parameters

T
\r\n
\r\n\r\n\r\n

This type should be class and can new instance.

\n\r\n
K
\r\n
\r\n\r\n\r\n

This type is a struct type, class type can't be used for this parameter.

\n\r\n

Inheritance

\r\n
\nobject\n
\n\n\r\n

Implements

\r\n
\nICat\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Extension Methods

\r\n\n\n\r\n

Examples

Here's example of how to create an instance of this class. As T is limited with class and K is limited with struct.

\n
var a = new Cat(object, int)();\nint catNumber = new int();\nunsafe\n{\n    a.GetFeetLength(catNumber);\n}
\n

As you see, here we bring in pointer so we need to add unsafe keyword.

\n

Remarks

Here's all the content you can see in this class.

\n

Constructors

Cat()

\r\n

Default constructor.

\n
public Cat()

Cat(T)

\r\n

Constructor with one generic parameter.

\n
public Cat(T ownType)

Parameters

ownType T
\r\n
\r\n\r\n\r\n

This parameter type defined by class.

\n\r\n

Cat(string, out int, string, bool)

\r\n

It's a complex constructor. The parameter will have some attributes.

\n
public Cat(string nickName, out int age, string realName, bool isHealthy)

Parameters

nickName string
\r\n
\r\n\r\n\r\n

it's string type.

\n\r\n
age int
\r\n
\r\n\r\n\r\n

It's an out and ref parameter.

\n\r\n
realName string
\r\n
\r\n\r\n\r\n

It's an out paramter.

\n\r\n
isHealthy bool
\r\n
\r\n\r\n\r\n

It's an in parameter.

\n\r\n

Fields

isHealthy Deprecated

\r\n

Field with attribute.

\n
[ContextStatic]\n[NonSerialized]\n[Obsolete]\npublic bool isHealthy

Field Value

bool
\r\n
\r\n\r\n\r\n\r\n

Properties

Age Deprecated

\r\n

Hint cat's age.

\n
[Obsolete]\nprotected int Age { get; set; }

Property Value

int
\r\n
\r\n\r\n\r\n\r\n

Name

\r\n

EII property.

\n
public string Name { get; }

Property Value

string
\r\n
\r\n\r\n\r\n\r\n

this[string]

\r\n

This is index property of Cat. You can see that the visibility is different between get and set method.

\n
public int this[string a] { protected get; set; }

Property Value

int
\r\n
\r\n\r\n\r\n\r\n

Methods

CalculateFood(DateTime)

\r\n

It's a method with complex return type.

\n
public Dictionary<string, List<int>> CalculateFood(DateTime date)

Parameters

date DateTime
\r\n
\r\n\r\n\r\n

Date time to now.

\n\r\n

Returns

Dictionary<string, List<int>>
\r\n
\r\n\r\n\r\n

It's a relationship map of different kind food.

\n\r\n

Equals(object)

\r\n

Override the method of Object.Equals(object obj).

\n
public override bool Equals(object obj)

Parameters

obj object
\r\n
\r\n\r\n\r\n

Can pass any class type.

\n\r\n

Returns

bool
\r\n
\r\n\r\n\r\n

The return value tell you whehter the compare operation is successful.

\n\r\n

GetTailLength(int*, params object[])

\r\n

It's an unsafe method.\nAs you see, catName is a pointer, so we need to add unsafe keyword.

\n
public long GetTailLength(int* catName, params object[] parameters)

Parameters

catName int*
\r\n
\r\n\r\n\r\n

Thie represent for cat name length.

\n\r\n
parameters object[]
\r\n
\r\n\r\n\r\n

Optional parameters.

\n\r\n

Returns

long
\r\n
\r\n\r\n\r\n

Return cat tail's length.

\n\r\n

Jump(T, K, ref bool)

\r\n

This method have attribute above it.

\n
[Conditional("Debug")]\npublic void Jump(T ownType, K anotherOwnType, ref bool cheat)

Parameters

ownType T
\r\n
\r\n\r\n\r\n

Type come from class define.

\n\r\n
anotherOwnType K
\r\n
\r\n\r\n\r\n

Type come from class define.

\n\r\n
cheat bool
\r\n
\r\n\r\n\r\n

Hint whether this cat has cheat mode.

\n\r\n

Exceptions

ArgumentException
\r\n
\r\n\r\n\r\n

This is an argument exception

\n\r\n

ownEat Deprecated

\r\n\n

Eat event of this cat

\n
[Obsolete("This _event handler_ is deprecated.")]\npublic event EventHandler ownEat

Event Type

EventHandler
\r\n
\r\n\r\n\r\n\r\n

Operators

operator +(Cat<T, K>, int)

\r\n

Addition operator of this class.

\n
public static int operator +(Cat<T, K> lsr, int rsr)

Parameters

lsr Cat<T, K>
\r\n
\r\n\r\n\r\n

..

\n\r\n
rsr int
\r\n
\r\n\r\n\r\n

~~

\n\r\n

Returns

int
\r\n
\r\n\r\n\r\n

Result with int type.

\n\r\n

explicit operator Tom(Cat<T, K>)

\r\n

Expilicit operator of this class.

\n

It means this cat can evolve to change to Tom. Tom and Jerry.

\n
public static explicit operator Tom(Cat<T, K> src)

Parameters

src Cat<T, K>
\r\n
\r\n\r\n\r\n

Instance of this class.

\n\r\n

Returns

Tom
\r\n
\r\n\r\n\r\n

Advanced class type of cat.

\n\r\n

operator -(Cat<T, K>, int)

\r\n

Similar with operaotr +, refer to that topic.

\n
public static int operator -(Cat<T, K> lsr, int rsr)

Parameters

lsr Cat<T, K>
\r\n
\r\n\r\n\r\n\r\n
rsr int
\r\n
\r\n\r\n\r\n\r\n

Returns

int
\r\n
\r\n\r\n\r\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json index 3942424801d..2f51e0709d0 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Enumeration ColorType", "title": "Enum ContainersRefType.ColorType", "content": "

Enum ContainersRefType.ColorType

\r\n
\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n

Enumeration ColorType

\n
public enum ContainersRefType.ColorType

Fields

Red = 0
\r\n
\r\n\r\n\r\n

red

\n\r\n
Blue = 1
\r\n
\r\n\r\n\r\n

blue

\n\r\n
Yellow = 2
\r\n
\r\n\r\n\r\n

yellow

\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json index da5f58e1712..b82e68d0f90 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Delegate ContainersRefTypeDelegate", "title": "Delegate ContainersRefType.ContainersRefTypeDelegate", "content": "

Delegate ContainersRefType.ContainersRefTypeDelegate

\r\n
\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n

Delegate ContainersRefTypeDelegate

\n
public delegate void ContainersRefType.ContainersRefTypeDelegate()
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json index 677e32a0365..21ea06b1a19 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Struct ContainersRefType", "title": "Struct ContainersRefType", "content": "

Struct ContainersRefType

\r\n
\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n

Struct ContainersRefType

\n
public struct ContainersRefType

Inherited Members

\r\n\n\n\n\n\n\n\r\n

Extension Methods

\r\n\n\n\r\n

Fields

ColorCount

\r\n

ColorCount

\n
public long ColorCount

Field Value

long
\r\n
\r\n\r\n\r\n\r\n

Properties

GetColorCount

\r\n

GetColorCount

\n
public long GetColorCount { get; }

Property Value

long
\r\n
\r\n\r\n\r\n\r\n

Methods

ContainersRefTypeNonRefMethod(params object[])

\r\n

ContainersRefTypeNonRefMethod

\narray\n
public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)

Parameters

parmsArray object[]
\r\n
\r\n\r\n\r\n\r\n

Returns

int
\r\n
\r\n\r\n\r\n\r\n

ContainersRefTypeEventHandler

\r\n
public event EventHandler ContainersRefTypeEventHandler

Event Type

EventHandler
\r\n
\r\n\r\n\r\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json index 52960e08fcc..309508eb846 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Fake delegate", "title": "Delegate FakeDelegate", "content": "

Delegate FakeDelegate<T>

\r\n
\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Fake delegate

\n
public delegate int FakeDelegate<T>(long num, string name, params object[] scores)

Parameters

num long
\r\n
\r\n\r\n\r\n

Fake para

\n\r\n
name string
\r\n
\r\n\r\n\r\n

Fake para

\n\r\n
scores object[]
\r\n
\r\n\r\n\r\n

Optional Parameter.

\n\r\n

Returns

int
\r\n
\r\n\r\n\r\n

Return a fake number to confuse you.

\n\r\n

Type Parameters

T
\r\n
\r\n\r\n\r\n

Fake para

\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.IAnimal.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.IAnimal.html.view.verified.json index 04b08ec05ac..680e836d245 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.IAnimal.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.IAnimal.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "This is basic interface of all animal.", "title": "Interface IAnimal", "content": "

Interface IAnimal

\r\n
\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

This is basic interface of all animal.

\n
public interface IAnimal

Properties

Name

\r\n

Name of Animal.

\n
string Name { get; }

Property Value

string
\r\n
\r\n\r\n\r\n\r\n

this[int]

\r\n

Return specific number animal's name.

\n
string this[int index] { get; }

Property Value

string
\r\n
\r\n\r\n\r\n\r\n

Methods

Eat()

\r\n

Animal's eat method.

\n
void Eat()

Eat<Tool>(Tool)

\r\n

Overload method of eat. This define the animal eat by which tool.

\n
void Eat<Tool>(Tool tool) where Tool : class

Parameters

tool Tool
\r\n
\r\n\r\n\r\n

Tool name.

\n\r\n

Type Parameters

Tool
\r\n
\r\n\r\n\r\n

It's a class type.

\n\r\n

Eat(string)

\r\n

Feed the animal with some food

\n
void Eat(string food)

Parameters

food string
\r\n
\r\n\r\n\r\n

Food to eat

\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.ICat.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.ICat.html.view.verified.json index 282ebdd05a6..1ac959c3d30 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.ICat.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.ICat.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Cat's interface", "title": "Interface ICat", "content": "

Interface ICat

\r\n
\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Cat's interface

\n
public interface ICat : IAnimal

Implements

\r\n\n\r\n

Extension Methods

\r\n\n\n\r\n

eat

\r\n

eat event of cat. Every cat must implement this event.

\n
event EventHandler eat

Event Type

EventHandler
\r\n
\r\n\r\n\r\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.ICatExtension.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.ICatExtension.html.view.verified.json index 7c7f0f9309f..0e03d515b1f 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.ICatExtension.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.ICatExtension.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "It's the class that contains ICat interface's extension method.\nThis class must be public and static.\nAlso it shouldn't be a geneic class", "title": "Class ICatExtension", "content": "

Class ICatExtension

\r\n
\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

It's the class that contains ICat interface's extension method.

\n

This class must be public and static.

\n

Also it shouldn't be a geneic class

\n
public static class ICatExtension

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Play(ICat, ColorType)

\r\n

Extension method to let cat play

\n
public static void Play(this ICat icat, ContainersRefType.ColorType toy)

Parameters

icat ICat
\r\n
\r\n\r\n\r\n

Cat

\n\r\n
toy ContainersRefType.ColorType
\r\n
\r\n\r\n\r\n

Something to play

\n\r\n

Sleep(ICat, long)

\r\n

Extension method hint that how long the cat can sleep.

\n
public static void Sleep(this ICat icat, long hours)

Parameters

icat ICat
\r\n
\r\n\r\n\r\n

The type will be extended.

\n\r\n
hours long
\r\n
\r\n\r\n\r\n

The length of sleep.

\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json index bb53d87d19c..be1ef697259 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Generic delegate with many constrains.", "title": "Delegate MRefDelegate", "content": "

Delegate MRefDelegate<K, T, L>

\r\n
\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Generic delegate with many constrains.

\n
public delegate void MRefDelegate<K, T, L>(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable<long>

Parameters

k K
\r\n
\r\n\r\n\r\n

Type K.

\n\r\n
t T
\r\n
\r\n\r\n\r\n

Type T.

\n\r\n
l L
\r\n
\r\n\r\n\r\n

Type L.

\n\r\n

Type Parameters

K
\r\n
\r\n\r\n\r\n

Generic K.

\n\r\n
T
\r\n
\r\n\r\n\r\n

Generic T.

\n\r\n
L
\r\n
\r\n\r\n\r\n

Generic L.

\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json index e1eb196be2c..35b4ae6178e 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Delegate in the namespace", "title": "Delegate MRefNormalDelegate", "content": "

Delegate MRefNormalDelegate

\r\n
\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Delegate in the namespace

\n
public delegate void MRefNormalDelegate(List<string> pics, out string name)

Parameters

pics List<string>
\r\n
\r\n\r\n\r\n

a name list of pictures.

\n\r\n
name string
\r\n
\r\n\r\n\r\n

give out the needed name.

\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Tom.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Tom.html.view.verified.json index b3d6ab3f83c..f7dc765366b 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Tom.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.Tom.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Tom class is only inherit from Object. Not any member inside itself.", "title": "Class Tom", "content": "

Class Tom

\r\n
\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Tom class is only inherit from Object. Not any member inside itself.

\n
public class Tom

Inheritance

\r\n
\nobject\n
\n
\nTom\n
\n\r\n

Derived

\r\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

TomMethod(Complex<TomFromBaseClass, TomFromBaseClass>, Tuple<string, Tom>)

\r\n

This is a Tom Method with complex type as return

\n
public Complex<string, TomFromBaseClass> TomMethod(Complex<TomFromBaseClass, TomFromBaseClass> a, Tuple<string, Tom> b)

Parameters

a Complex<TomFromBaseClass, TomFromBaseClass>
\r\n
\r\n\r\n\r\n

A complex input

\n\r\n
b Tuple<string, Tom>
\r\n
\r\n\r\n\r\n

Another complex input

\n\r\n

Returns

Complex<string, TomFromBaseClass>
\r\n
\r\n\r\n\r\n

Complex

\n\r\n

Exceptions

NotImplementedException
\r\n
\r\n\r\n\r\n

This is not implemented

\n\r\n
ArgumentException
\r\n
\r\n\r\n\r\n

This is the exception to be thrown when implemented

\n\r\n
CatException<T>
\r\n
\r\n\r\n\r\n

This is the exception in current documentation

\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json index 51b9b5ef72b..383093ec8f8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "*TomFromBaseClass* inherits from @", "title": "Class TomFromBaseClass", "content": "

Class TomFromBaseClass

\r\n
\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

TomFromBaseClass inherits from @

\n
public class TomFromBaseClass : Tom

Inheritance

\r\n
\nobject\n
\n
\nTom\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\r\n

Constructors

TomFromBaseClass(int)

\r\n

This is a #ctor with parameter

\n
public TomFromBaseClass(int k)

Parameters

k int
\r\n
\r\n\r\n\r\n\r\n
", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json index 13adf183240..fa8d811b656 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Enumeration ColorType", "title": "Enum ColorType", "content": "

Enum ColorType

\r\n
\r\n
Namespace
MRef.Demo.Enumeration
Assembly
CatLibrary.dll
\r\n

Enumeration ColorType

\n
public enum ColorType

Fields

Red = 0
\r\n
\r\n\r\n\r\n

this color is red

\n\r\n
Blue = 1
\r\n
\r\n\r\n\r\n

blue like river

\n\r\n
Yellow = 2
\r\n
\r\n\r\n\r\n

yellow comes from desert

\n\r\n

Remarks

\nRed/Blue/Yellow can become all color you want.\n

\n
    \n

    See Also

    \r\n
    \nobject\n
    \n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/index.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/index.verified.json index 9fd745f5255..e1f1de69c03 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/index.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/index.verified.json @@ -87,7 +87,7 @@ "api/BuildFromProject.Inheritdoc.Issue7484.html": { "href": "api/BuildFromProject.Inheritdoc.Issue7484.html", "title": "Class Inheritdoc.Issue7484 | docfx seed website", - "keywords": "Class Inheritdoc.Issue7484 Namespace BuildFromProject Assembly BuildFromProject.dll This is a test class to have something for DocFX to document. public class Inheritdoc.Issue7484 Inheritance object Inheritdoc.Issue7484 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Remarks We're going to talk about things now. BoolReturningMethod(bool) Simple method to generate docs for. DoDad A string that could have something. Constructors Issue7484() This is a constructor to document. public Issue7484() Properties DoDad A string that could have something. public string DoDad { get; } Property Value string Methods BoolReturningMethod(bool) Simple method to generate docs for. public bool BoolReturningMethod(bool source) Parameters source bool A meaningless boolean value, much like most questions in the world. Returns bool An exactly equivalently meaningless boolean value, much like most answers in the world. Remarks I'd like to take a moment to thank all of those who helped me get to a place where I can write documentation like this." + "keywords": "Class Inheritdoc.Issue7484 Namespace BuildFromProject Assembly BuildFromProject.dll This is a test class to have something for DocFX to document. public class Inheritdoc.Issue7484 Inheritance object Inheritdoc.Issue7484 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Remarks We're going to talk about things now. BoolReturningMethod(bool) Simple method to generate docs for. DoDad A string that could have something. Constructors Issue7484() This is a constructor to document. public Issue7484() Properties DoDad A string that could have something. public string DoDad { get; } Property Value string This is a test class to have something for DocFX to document. Methods BoolReturningMethod(bool) Simple method to generate docs for. public bool BoolReturningMethod(bool source) Parameters source bool A meaningless boolean value, much like most questions in the world. Returns bool An exactly equivalently meaningless boolean value, much like most answers in the world. Remarks I'd like to take a moment to thank all of those who helped me get to a place where I can write documentation like this." }, "api/BuildFromProject.Inheritdoc.Issue8101.html": { "href": "api/BuildFromProject.Inheritdoc.Issue8101.html", @@ -142,12 +142,12 @@ "api/BuildFromVBSourceCode.BaseClass1.html": { "href": "api/BuildFromVBSourceCode.BaseClass1.html", "title": "Class BaseClass1 | docfx seed website", - "keywords": "Class BaseClass1 Namespace BuildFromVBSourceCode This is the BaseClass public abstract class BaseClass1 Inheritance object BaseClass1 Derived Class1 Inherited Members object.Equals(object) object.Equals(object, object) object.Finalize() object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods WithDeclarationKeyword(Class1) public abstract DateTime WithDeclarationKeyword(Class1 keyword) Parameters keyword Class1 Returns DateTime" + "keywords": "Class BaseClass1 Namespace BuildFromVBSourceCode This is the BaseClass public abstract class BaseClass1 Inheritance object BaseClass1 Derived Class1 Inherited Members object.Equals(object) object.Equals(object, object) object.Finalize() object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods WithDeclarationKeyword(Class1) public abstract DateTime WithDeclarationKeyword(Class1 keyword) Parameters keyword Class1 This is the BaseClass Returns DateTime This is the BaseClass" }, "api/BuildFromVBSourceCode.Class1.html": { "href": "api/BuildFromVBSourceCode.Class1.html", "title": "Class Class1 | docfx seed website", - "keywords": "Class Class1 Namespace BuildFromVBSourceCode This is summary from vb class... public class Class1 : BaseClass1 Inheritance object BaseClass1 Class1 Inherited Members object.Equals(object) object.Equals(object, object) object.Finalize() object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Fields ValueClass This is a Value type public Class1 ValueClass Field Value Class1 Properties Keyword [Obsolete(\"This member is obsolete.\", true)] public Class1 Keyword { get; } Property Value Class1 Methods Value(string) This is a Function public int Value(string name) Parameters name string Name as the String value Returns int Returns Ahooo WithDeclarationKeyword(Class1) What is Sub? public override DateTime WithDeclarationKeyword(Class1 keyword) Parameters keyword Class1 Returns DateTime" + "keywords": "Class Class1 Namespace BuildFromVBSourceCode This is summary from vb class... public class Class1 : BaseClass1 Inheritance object BaseClass1 Class1 Inherited Members object.Equals(object) object.Equals(object, object) object.Finalize() object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Fields ValueClass This is a Value type public Class1 ValueClass Field Value Class1 This is summary from vb class... Properties Keyword [Obsolete(\"This member is obsolete.\", true)] public Class1 Keyword { get; } Property Value Class1 This is summary from vb class... Methods Value(string) This is a Function public int Value(string name) Parameters name string Name as the String value Returns int Returns Ahooo WithDeclarationKeyword(Class1) What is Sub? public override DateTime WithDeclarationKeyword(Class1 keyword) Parameters keyword Class1 This is summary from vb class... Returns DateTime This is summary from vb class..." }, "api/BuildFromVBSourceCode.html": { "href": "api/BuildFromVBSourceCode.html", @@ -157,7 +157,7 @@ "api/CatLibrary.Cat-2.html": { "href": "api/CatLibrary.Cat-2.html", "title": "Class Cat | docfx seed website", - "keywords": "Class Cat Namespace CatLibrary Assembly CatLibrary.dll Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to ICatExtension class This is a class talking about CAT. NOTE This is a CAT class Refer to IAnimal to see other animals. [Serializable] [Obsolete] public class Cat : ICat, IAnimal where T : class, new() where K : struct Type Parameters T This type should be class and can new instance. K This type is a struct type, class type can't be used for this parameter. Inheritance object Cat Implements ICat IAnimal Inherited Members object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Examples Here's example of how to create an instance of this class. As T is limited with class and K is limited with struct. var a = new Cat(object, int)(); int catNumber = new int(); unsafe { a.GetFeetLength(catNumber); } As you see, here we bring in pointer so we need to add unsafe keyword. Remarks THIS is remarks overridden in MARKDWON file Constructors Cat() Default constructor. public Cat() Cat(string, out int, string, bool) It's a complex constructor. The parameter will have some attributes. public Cat(string nickName, out int age, string realName, bool isHealthy) Parameters nickName string it's string type. age int It's an out and ref parameter. realName string It's an out paramter. isHealthy bool It's an in parameter. Cat(T) Constructor with one generic parameter. public Cat(T ownType) Parameters ownType T This parameter type defined by class. Fields isHealthy Field with attribute. [ContextStatic] [NonSerialized] [Obsolete] public bool isHealthy Field Value bool Properties Age Hint cat's age. [Obsolete] protected int Age { get; set; } Property Value int this[string] This is index property of Cat. You can see that the visibility is different between get and set method. public int this[string a] { protected get; set; } Parameters a string Cat's name. Property Value int Cat's number. Name EII property. public string Name { get; } Property Value string Methods Override CalculateFood Name It's an overridden summary in markdown format This is overriding methods. You can override parameter descriptions for methods, you can even add exceptions to methods. Check the intermediate obj folder to see the data model of the generated method/class. Override Yaml header should follow the data structure. public Dictionary> CalculateFood(DateTime date) Parameters date DateTime This is overridden description for a parameter. id must be specified. Returns Dictionary> It's overridden description for return. type must be specified. Exceptions ArgumentException This is an overridden argument exception. you can add additional exception by adding different exception type. Equals(object) Override the method of Object.Equals(object obj). public override bool Equals(object obj) Parameters obj object Can pass any class type. Returns bool The return value tell you whehter the compare operation is successful. GetTailLength(int*, params object[]) It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword. public long GetTailLength(int* catName, params object[] parameters) Parameters catName int* Thie represent for cat name length. parameters object[] Optional parameters. Returns long Return cat tail's length. Jump(T, K, ref bool) This method have attribute above it. [Conditional(\"Debug\")] public void Jump(T ownType, K anotherOwnType, ref bool cheat) Parameters ownType T Type come from class define. anotherOwnType K Type come from class define. cheat bool Hint whether this cat has cheat mode. Exceptions ArgumentException This is an argument exception Events ownEat Eat event of this cat [Obsolete(\"This _event handler_ is deprecated.\")] public event EventHandler ownEat Event Type EventHandler Operators operator +(Cat, int) Addition operator of this class. public static int operator +(Cat lsr, int rsr) Parameters lsr Cat .. rsr int ~~ Returns int Result with int type. explicit operator Tom(Cat) Expilicit operator of this class. It means this cat can evolve to change to Tom. Tom and Jerry. public static explicit operator Tom(Cat src) Parameters src Cat Instance of this class. Returns Tom Advanced class type of cat. operator -(Cat, int) Similar with operaotr +, refer to that topic. public static int operator -(Cat lsr, int rsr) Parameters lsr Cat rsr int Returns int" + "keywords": "Class Cat Namespace CatLibrary Assembly CatLibrary.dll Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to ICatExtension class This is a class talking about CAT. NOTE This is a CAT class Refer to IAnimal to see other animals. [Serializable] [Obsolete] public class Cat : ICat, IAnimal where T : class, new() where K : struct Type Parameters T This type should be class and can new instance. K This type is a struct type, class type can't be used for this parameter. Inheritance object Cat Implements ICat IAnimal Inherited Members object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Examples Here's example of how to create an instance of this class. As T is limited with class and K is limited with struct. var a = new Cat(object, int)(); int catNumber = new int(); unsafe { a.GetFeetLength(catNumber); } As you see, here we bring in pointer so we need to add unsafe keyword. Remarks THIS is remarks overridden in MARKDWON file Constructors Cat() Default constructor. public Cat() Cat(string, out int, string, bool) It's a complex constructor. The parameter will have some attributes. public Cat(string nickName, out int age, string realName, bool isHealthy) Parameters nickName string it's string type. age int It's an out and ref parameter. realName string It's an out paramter. isHealthy bool It's an in parameter. Cat(T) Constructor with one generic parameter. public Cat(T ownType) Parameters ownType T This parameter type defined by class. Fields isHealthy Field with attribute. [ContextStatic] [NonSerialized] [Obsolete] public bool isHealthy Field Value bool Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class Properties Age Hint cat's age. [Obsolete] protected int Age { get; set; } Property Value int Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class this[string] This is index property of Cat. You can see that the visibility is different between get and set method. public int this[string a] { protected get; set; } Parameters a string Cat's name. Property Value int Cat's number. Name EII property. public string Name { get; } Property Value string Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class Methods Override CalculateFood Name It's an overridden summary in markdown format This is overriding methods. You can override parameter descriptions for methods, you can even add exceptions to methods. Check the intermediate obj folder to see the data model of the generated method/class. Override Yaml header should follow the data structure. public Dictionary> CalculateFood(DateTime date) Parameters date DateTime This is overridden description for a parameter. id must be specified. Returns Dictionary> It's overridden description for return. type must be specified. Exceptions ArgumentException This is an overridden argument exception. you can add additional exception by adding different exception type. Equals(object) Override the method of Object.Equals(object obj). public override bool Equals(object obj) Parameters obj object Can pass any class type. Returns bool The return value tell you whehter the compare operation is successful. GetTailLength(int*, params object[]) It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword. public long GetTailLength(int* catName, params object[] parameters) Parameters catName int* Thie represent for cat name length. parameters object[] Optional parameters. Returns long Return cat tail's length. Jump(T, K, ref bool) This method have attribute above it. [Conditional(\"Debug\")] public void Jump(T ownType, K anotherOwnType, ref bool cheat) Parameters ownType T Type come from class define. anotherOwnType K Type come from class define. cheat bool Hint whether this cat has cheat mode. Exceptions ArgumentException This is an argument exception Events ownEat Eat event of this cat [Obsolete(\"This _event handler_ is deprecated.\")] public event EventHandler ownEat Event Type EventHandler Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class Operators operator +(Cat, int) Addition operator of this class. public static int operator +(Cat lsr, int rsr) Parameters lsr Cat .. rsr int ~~ Returns int Result with int type. explicit operator Tom(Cat) Expilicit operator of this class. It means this cat can evolve to change to Tom. Tom and Jerry. public static explicit operator Tom(Cat src) Parameters src Cat Instance of this class. Returns Tom Advanced class type of cat. operator -(Cat, int) Similar with operaotr +, refer to that topic. public static int operator -(Cat lsr, int rsr) Parameters lsr Cat Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class rsr int Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class Returns int Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class" }, "api/CatLibrary.CatException-1.html": { "href": "api/CatLibrary.CatException-1.html", @@ -192,7 +192,7 @@ "api/CatLibrary.Core.ContainersRefType.html": { "href": "api/CatLibrary.Core.ContainersRefType.html", "title": "Struct ContainersRefType | docfx seed website", - "keywords": "Struct ContainersRefType Namespace CatLibrary.Core Assembly CatLibrary.Core.dll Struct ContainersRefType public struct ContainersRefType Inherited Members ValueType.Equals(object) ValueType.GetHashCode() ValueType.ToString() object.Equals(object, object) object.GetType() object.ReferenceEquals(object, object) Extension Methods Issue231.Bar(ContainersRefType) Issue231.Foo(ContainersRefType) Fields ColorCount ColorCount public long ColorCount Field Value long Properties GetColorCount GetColorCount public long GetColorCount { get; } Property Value long Methods ContainersRefTypeNonRefMethod(params object[]) ContainersRefTypeNonRefMethod array public static int ContainersRefTypeNonRefMethod(params object[] parmsArray) Parameters parmsArray object[] Returns int Events ContainersRefTypeEventHandler public event EventHandler ContainersRefTypeEventHandler Event Type EventHandler" + "keywords": "Struct ContainersRefType Namespace CatLibrary.Core Assembly CatLibrary.Core.dll Struct ContainersRefType public struct ContainersRefType Inherited Members ValueType.Equals(object) ValueType.GetHashCode() ValueType.ToString() object.Equals(object, object) object.GetType() object.ReferenceEquals(object, object) Extension Methods Issue231.Bar(ContainersRefType) Issue231.Foo(ContainersRefType) Fields ColorCount ColorCount public long ColorCount Field Value long Struct ContainersRefType Properties GetColorCount GetColorCount public long GetColorCount { get; } Property Value long Struct ContainersRefType Methods ContainersRefTypeNonRefMethod(params object[]) ContainersRefTypeNonRefMethod array public static int ContainersRefTypeNonRefMethod(params object[] parmsArray) Parameters parmsArray object[] Struct ContainersRefType Returns int Struct ContainersRefType Events ContainersRefTypeEventHandler public event EventHandler ContainersRefTypeEventHandler Event Type EventHandler Struct ContainersRefType" }, "api/CatLibrary.Core.ExplicitLayoutClass.html": { "href": "api/CatLibrary.Core.ExplicitLayoutClass.html", @@ -217,12 +217,12 @@ "api/CatLibrary.IAnimal.html": { "href": "api/CatLibrary.IAnimal.html", "title": "Interface IAnimal | docfx seed website", - "keywords": "Interface IAnimal Namespace CatLibrary Assembly CatLibrary.dll This is basic interface of all animal. Welcome to the Animal world! public interface IAnimal Remarks THIS is remarks overridden in MARKDWON file Properties this[int] Return specific number animal's name. string this[int index] { get; } Parameters index int Animal number. Property Value string Animal name. Name Name of Animal. string Name { get; } Property Value string Methods Eat() Animal's eat method. void Eat() Eat(string) Feed the animal with some food void Eat(string food) Parameters food string Food to eat Eat(Tool) Overload method of eat. This define the animal eat by which tool. void Eat(Tool tool) where Tool : class Parameters tool Tool Tool name. Type Parameters Tool It's a class type." + "keywords": "Interface IAnimal Namespace CatLibrary Assembly CatLibrary.dll This is basic interface of all animal. Welcome to the Animal world! public interface IAnimal Remarks THIS is remarks overridden in MARKDWON file Properties this[int] Return specific number animal's name. string this[int index] { get; } Parameters index int Animal number. Property Value string Animal name. Name Name of Animal. string Name { get; } Property Value string This is basic interface of all animal. Methods Eat() Animal's eat method. void Eat() Eat(string) Feed the animal with some food void Eat(string food) Parameters food string Food to eat Eat(Tool) Overload method of eat. This define the animal eat by which tool. void Eat(Tool tool) where Tool : class Parameters tool Tool Tool name. Type Parameters Tool It's a class type." }, "api/CatLibrary.ICat.html": { "href": "api/CatLibrary.ICat.html", "title": "Interface ICat | docfx seed website", - "keywords": "Interface ICat Namespace CatLibrary Assembly CatLibrary.dll Cat's interface public interface ICat : IAnimal Inherited Members IAnimal.Name IAnimal.this[int] IAnimal.Eat() IAnimal.Eat(Tool) IAnimal.Eat(string) Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Events eat eat event of cat. Every cat must implement this event. event EventHandler eat Event Type EventHandler" + "keywords": "Interface ICat Namespace CatLibrary Assembly CatLibrary.dll Cat's interface public interface ICat : IAnimal Inherited Members IAnimal.Name IAnimal.this[int] IAnimal.Eat() IAnimal.Eat(Tool) IAnimal.Eat(string) Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Events eat eat event of cat. Every cat must implement this event. event EventHandler eat Event Type EventHandler Cat's interface" }, "api/CatLibrary.ICatExtension.html": { "href": "api/CatLibrary.ICatExtension.html", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/pdf/toc.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/pdf/toc.pdf.verified.json index cfb5d3b3237..e0c40c5f8de 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/pdf/toc.pdf.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Linux/pdf/toc.pdf.verified.json @@ -1,5 +1,5 @@ { - "NumberOfPages": 125, + "NumberOfPages": 128, "Pages": [ { "Number": 1, @@ -309,7 +309,7 @@ }, { "Number": 2, - "Text": "BaseClass161Class162CatLibrary64Core66ContainersRefType67ContainersRefType.ColorType69ContainersRefType.ContainersRefTypeChild70ContainersRefType.ContainersRefTypeChildInterface71ContainersRefType.ContainersRefTypeDelegate72ExplicitLayoutClass73Issue23174CatException75Cat76Complex85FakeDelegate86IAnimal87ICat90ICatExtension91MRefDelegate93MRefNormalDelegate94Tom95TomFromBaseClass97MRef.Demo.Enumeration98ColorType99REST APIPet Store API100Contacts API115", + "Text": "BaseClass161Class162CatLibrary65Core67ContainersRefType68ContainersRefType.ColorType71ContainersRefType.ContainersRefTypeChild72ContainersRefType.ContainersRefTypeChildInterface73ContainersRefType.ContainersRefTypeDelegate74ExplicitLayoutClass75Issue23176CatException77Cat78Complex88FakeDelegate89IAnimal90ICat93ICatExtension94MRefDelegate96MRefNormalDelegate97Tom98TomFromBaseClass100MRef.Demo.Enumeration101ColorType102REST APIPet Store API103Contacts API118", "Links": [ { "Goto": { @@ -331,7 +331,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -340,7 +340,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -349,7 +349,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -358,7 +358,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -367,7 +367,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -376,7 +376,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -385,7 +385,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -394,7 +394,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Type": 2, "Coordinates": { "Top": 0 @@ -403,7 +403,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -412,7 +412,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -421,7 +421,7 @@ }, { "Goto": { - "PageNumber": 76, + "PageNumber": 78, "Type": 2, "Coordinates": { "Top": 0 @@ -430,7 +430,7 @@ }, { "Goto": { - "PageNumber": 85, + "PageNumber": 88, "Type": 2, "Coordinates": { "Top": 0 @@ -439,7 +439,7 @@ }, { "Goto": { - "PageNumber": 86, + "PageNumber": 89, "Type": 2, "Coordinates": { "Top": 0 @@ -448,7 +448,7 @@ }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Type": 2, "Coordinates": { "Top": 0 @@ -457,7 +457,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -466,7 +466,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Type": 2, "Coordinates": { "Top": 0 @@ -475,7 +475,7 @@ }, { "Goto": { - "PageNumber": 93, + "PageNumber": 96, "Type": 2, "Coordinates": { "Top": 0 @@ -484,7 +484,7 @@ }, { "Goto": { - "PageNumber": 94, + "PageNumber": 97, "Type": 2, "Coordinates": { "Top": 0 @@ -493,7 +493,7 @@ }, { "Goto": { - "PageNumber": 95, + "PageNumber": 98, "Type": 2, "Coordinates": { "Top": 0 @@ -502,7 +502,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -511,7 +511,7 @@ }, { "Goto": { - "PageNumber": 98, + "PageNumber": 101, "Type": 2, "Coordinates": { "Top": 0 @@ -520,7 +520,7 @@ }, { "Goto": { - "PageNumber": 99, + "PageNumber": 102, "Type": 2, "Coordinates": { "Top": 0 @@ -529,7 +529,7 @@ }, { "Goto": { - "PageNumber": 100, + "PageNumber": 103, "Type": 2, "Coordinates": { "Top": 0 @@ -538,7 +538,7 @@ }, { "Goto": { - "PageNumber": 115, + "PageNumber": 118, "Type": 2, "Coordinates": { "Top": 0 @@ -550,7 +550,7 @@ { "Number": 3, "NumberOfImages": 1, - "Text": "3 / 125Getting Started with docfxGetting StartedThis is a seed.", + "Text": "3 / 128Getting Started with docfxGetting StartedThis is a seed.", "Links": [ { "Uri": "" @@ -562,22 +562,22 @@ }, { "Number": 4, - "Text": "4 / 125docfx is an API documentation generator for .NET, currently support C# and VB. It has theability to extract triple slash comments out from your source code. What's more, it hassyntax to link additional files to API to add additional remarks. docfx will scan your sourcecode and your additional conceptual files and generate a complete HTML documentationwebsite for you. docfx provides the flexibility for you to customize the website throughtemplates. We currently have several embedded templates, including websites containingpure static html pages and also website managed by AngularJS.Click \"View Source\" for an API to route to the source code in GitHub (your API must bepushed to GitHub)docfx provide DNX version for cross platform use.docfx can be used within Visual Studio seamlessly. NOTE offical docfx.msbuild nugetpackage is now in pre-release version. You can also build your own with source codeand use it locally.We support Docfx Flavored Markdown(DFM) for writing conceptual files. DFM is100% compatible with Github Flavored Markdown(GFM) and add several new featuresincluding file inclusion, cross reference, and yaml header.", + "Text": "4 / 128docfx is an API documentation generator for .NET, currently support C# and VB. It has theability to extract triple slash comments out from your source code. What's more, it hassyntax to link additional files to API to add additional remarks. docfx will scan your sourcecode and your additional conceptual files and generate a complete HTML documentationwebsite for you. docfx provides the flexibility for you to customize the website throughtemplates. We currently have several embedded templates, including websites containingpure static html pages and also website managed by AngularJS.Click \"View Source\" for an API to route to the source code in GitHub (your API must bepushed to GitHub)docfx provide DNX version for cross platform use.docfx can be used within Visual Studio seamlessly. NOTE offical docfx.msbuild nugetpackage is now in pre-release version. You can also build your own with source codeand use it locally.We support Docfx Flavored Markdown(DFM) for writing conceptual files. DFM is100% compatible with Github Flavored Markdown(GFM) and add several new featuresincluding file inclusion, cross reference, and yaml header.", "Links": [] }, { "Number": 5, - "Text": "5 / 125Engineering GuidelinesBasicsCopyright header and license noticeAll source code files require the following exact header according to its language (please donot make any changes to it).extension: .csextension: .jsextension: .cssextension: .tmpl, .tmpl.partialExternal dependenciesThis refers to dependencies on projects (i.e. NuGet packages) outside of the docfx repo, andespecially outside of Microsoft. Adding new dependencies require additional approval.Current approved dependencies are:Newtonsoft.JsonJintHtmlAgilityPack// Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT license.// Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT license./** * Licensed to the .NET Foundation under one or more agreements. * The .NET Foundation licenses this file to you under the MIT license. */{{!Licensed to the .NET Foundation under one or more agreements. The .NET Foundation lic", + "Text": "5 / 128Engineering GuidelinesBasicsCopyright header and license noticeAll source code files require the following exact header according to its language (please donot make any changes to it).extension: .csextension: .jsextension: .cssextension: .tmpl, .tmpl.partialExternal dependenciesThis refers to dependencies on projects (i.e. NuGet packages) outside of the docfx repo, andespecially outside of Microsoft. Adding new dependencies require additional approval.Current approved dependencies are:Newtonsoft.JsonJintHtmlAgilityPack// Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT license.// Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT license./** * Licensed to the .NET Foundation under one or more agreements. * The .NET Foundation licenses this file to you under the MIT license. */{{!Licensed to the .NET Foundation under one or more agreements. The .NET Foundation lic", "Links": [] }, { "Number": 6, - "Text": "6 / 125NustacheYamlDotNetCode reviews and checkinsTo help ensure that only the highest quality code makes its way into the project, pleasesubmit all your code changes to GitHub as PRs. This includes runtime code changes, unittest updates, and deployment scripts. For example, sending a PR for just an update to aunit test might seem like a waste of time but the unit tests are just as important as theproduct code and as such, reviewing changes to them is also just as important.The advantages are numerous: improving code quality, more visibility on changes and theirpotential impact, avoiding duplication of effort, and creating general awareness of progressbeing made in various areas.In general a PR should be signed off(using the \uD83D\uDC4D emoticon) by the Owner of that code.To commit the PR to the repo do not use the Big Green Button. Instead, do a typicalpush that you would use with Git (e.g. local pull, rebase, merge, push).Source Code ManagementBranch strategyIn general:master has the code for the latest release on NuGet.org. (e.g. 1.0.0, 1.1.0)dev has the code that is being worked on but not yet released. This is the branch intowhich devs normally submit pull requests and merge changes into. We run daily CItowards dev branch and generate pre-release nuget package, e.g. 1.0.1-alpha-9-abcdefsd.hotfix has the code for fixing master bug after it is released. hotfix changes will bemerged back to master and dev once it is verified.Solution and project folder structure and namingSolution files go in the repo root. The default entry point is All.sln.Every project also needs a project.json and a matching .xproj file. This project.json is thesource of truth for a project's dependencies and configuration options.Solution need to contain solution folders that match the physical folder (src, test, tools,etc.).Assembly naming pattern", + "Text": "6 / 128NustacheYamlDotNetCode reviews and checkinsTo help ensure that only the highest quality code makes its way into the project, pleasesubmit all your code changes to GitHub as PRs. This includes runtime code changes, unittest updates, and deployment scripts. For example, sending a PR for just an update to aunit test might seem like a waste of time but the unit tests are just as important as theproduct code and as such, reviewing changes to them is also just as important.The advantages are numerous: improving code quality, more visibility on changes and theirpotential impact, avoiding duplication of effort, and creating general awareness of progressbeing made in various areas.In general a PR should be signed off(using the \uD83D\uDC4D emoticon) by the Owner of that code.To commit the PR to the repo do not use the Big Green Button. Instead, do a typicalpush that you would use with Git (e.g. local pull, rebase, merge, push).Source Code ManagementBranch strategyIn general:master has the code for the latest release on NuGet.org. (e.g. 1.0.0, 1.1.0)dev has the code that is being worked on but not yet released. This is the branch intowhich devs normally submit pull requests and merge changes into. We run daily CItowards dev branch and generate pre-release nuget package, e.g. 1.0.1-alpha-9-abcdefsd.hotfix has the code for fixing master bug after it is released. hotfix changes will bemerged back to master and dev once it is verified.Solution and project folder structure and namingSolution files go in the repo root. The default entry point is All.sln.Every project also needs a project.json and a matching .xproj file. This project.json is thesource of truth for a project's dependencies and configuration options.Solution need to contain solution folders that match the physical folder (src, test, tools,etc.).Assembly naming pattern", "Links": [] }, { "Number": 7, - "Text": "7 / 125The general naming pattern is Docfx...Unit testsWe use xUnit.net for all unit testing.Coding StandardsPlease refer to C# Coding standards for detailed guideline for C# coding standards.TODO Template Coding standardsTODO Template Preprocess JS Coding standards", + "Text": "7 / 128The general naming pattern is Docfx...Unit testsWe use xUnit.net for all unit testing.Coding StandardsPlease refer to C# Coding standards for detailed guideline for C# coding standards.TODO Template Coding standardsTODO Template Preprocess JS Coding standards", "Links": [ { "Goto": { @@ -592,7 +592,7 @@ }, { "Number": 8, - "Text": "8 / 125C# Coding StandardsIntroductionThe coding standard will be used in conjunction with customized version of StyleCop andFxCop [TODO] during both development and build process. This will help ensure that thestandard is followed by all developers on the team in a consistent manner.\"Any fool can write code that a computer can understand. Good programmers writecode that humans understand\".Martin Fowler. Refactoring: Improving the design of existing code.PurposeThe aim of this section is to define a set of C# coding standards to be used by CAPS buildteam to guarantee maximum legibility, reliability, re-usability and homogeneity of our code.Each section is marked Mandatory or Recommended. Mandatory sections, will be enforcedduring code reviews as well as tools like StyleCop and FxCop, and code will not beconsidered complete until it is compliant.ScopeThis section contains general C# coding standards which can be applied to any type ofapplication developed in C#, based on Framework Design Guidelines\uF1C5.It does not pretend to be a tutorial on C#. It only includes a set of limitations andrecommendations focused on clarifying the development.ToolsResharper\uF1C5 is a great 3rd party code cleanup and style tool.StyleCop\uF1C5 analyzes C# srouce code to enforce a set of style and consistency rules andhas been integrated into many 3rd party development tools such as Resharper.FxCop\uF1C5 is an application that analyzes managed code assemblies (code that targetsthe .NET Framework common language runtime) and reports information about theassemblies, such as possible design, localization, performance, and securityimprovements.C# Stylizer\uF1C5 does many of the style rules automaticallyHighlights of Coding StandardsThis section is not intended to give a summary of all the coding standards that enabled byour customized StyleCop, but to give a highlight of some rules one will possibly meet in", + "Text": "8 / 128C# Coding StandardsIntroductionThe coding standard will be used in conjunction with customized version of StyleCop andFxCop [TODO] during both development and build process. This will help ensure that thestandard is followed by all developers on the team in a consistent manner.\"Any fool can write code that a computer can understand. Good programmers writecode that humans understand\".Martin Fowler. Refactoring: Improving the design of existing code.PurposeThe aim of this section is to define a set of C# coding standards to be used by CAPS buildteam to guarantee maximum legibility, reliability, re-usability and homogeneity of our code.Each section is marked Mandatory or Recommended. Mandatory sections, will be enforcedduring code reviews as well as tools like StyleCop and FxCop, and code will not beconsidered complete until it is compliant.ScopeThis section contains general C# coding standards which can be applied to any type ofapplication developed in C#, based on Framework Design Guidelines\uF1C5.It does not pretend to be a tutorial on C#. It only includes a set of limitations andrecommendations focused on clarifying the development.ToolsResharper\uF1C5 is a great 3rd party code cleanup and style tool.StyleCop\uF1C5 analyzes C# srouce code to enforce a set of style and consistency rules andhas been integrated into many 3rd party development tools such as Resharper.FxCop\uF1C5 is an application that analyzes managed code assemblies (code that targetsthe .NET Framework common language runtime) and reports information about theassemblies, such as possible design, localization, performance, and securityimprovements.C# Stylizer\uF1C5 does many of the style rules automaticallyHighlights of Coding StandardsThis section is not intended to give a summary of all the coding standards that enabled byour customized StyleCop, but to give a highlight of some rules one will possibly meet in", "Links": [ { "Uri": "http://msdn.microsoft.com/en-us/library/ms229042.aspx" @@ -643,12 +643,12 @@ }, { "Number": 9, - "Text": "9 / 125daily coding life. It also provides some recommended however not mandatory(which meansnot enabled in StyleCop) coding standards.File Layout (Recommended)Only one public class is allowed per file.The file name is derived from the class name.Class Definition Order (Mandatory)The class definition contains class members in the following order, from less restrictedscope (public) to more restrictive (private):Nested types, e.g. classes, enum, struct, etc.Field members, e.g. member variables, const, etc.Member functionsConstructorsFinalizer (Do not use unless absolutely necessary)Methods (Properties, Events, Operations, Overridables, Static)Private nested typesNaming (Mandatory)DO use PascalCasing for all public member, type, and namespace names consisting ofmultiple words.NOTE: A special case is made for two-letter acronyms in which both letters are capitalized,e.g. IOStreamDO use camelCasing for parameter names.Class : ObserverFilename: Observer.cs PropertyDescriptor HtmlTag IOStream propertyDescriptor htmlTag ioStream", + "Text": "9 / 128daily coding life. It also provides some recommended however not mandatory(which meansnot enabled in StyleCop) coding standards.File Layout (Recommended)Only one public class is allowed per file.The file name is derived from the class name.Class Definition Order (Mandatory)The class definition contains class members in the following order, from less restrictedscope (public) to more restrictive (private):Nested types, e.g. classes, enum, struct, etc.Field members, e.g. member variables, const, etc.Member functionsConstructorsFinalizer (Do not use unless absolutely necessary)Methods (Properties, Events, Operations, Overridables, Static)Private nested typesNaming (Mandatory)DO use PascalCasing for all public member, type, and namespace names consisting ofmultiple words.NOTE: A special case is made for two-letter acronyms in which both letters are capitalized,e.g. IOStreamDO use camelCasing for parameter names.Class : ObserverFilename: Observer.cs PropertyDescriptor HtmlTag IOStream propertyDescriptor htmlTag ioStream", "Links": [] }, { "Number": 10, - "Text": "10 / 125DO start with underscore for private fieldsDO start static readonly fields, constants with capitalized caseDO NOT capitalize each word in so-called closed-form compound words\uF1C5.DO have \"Async\" explicitly in the Async method name to notice people how to use itproperlyFormatting (Mandatory)DO use spaces over tabs, and always show all spaces/tabs in IDETipsVisual Studio > TOOLS > Options > Text Editor > C# > Tabs > Insert spaces (Tab size:4)Visual Studio > Edit > Advanced > View White SpaceDO add using inside namespace declarationDO add a space when:1. for (var i = 0; i < 1; i++)2. if (a == b)Cross-platform codingOur code should supports multiple operating systems. Don't assume we only run (anddevelop) on Windows. Code should be sensitvie to the differences between OS's. Here aresome specifics to consider. private readonly Guid _userId = Guid.NewGuid(); private static readonly IEntityAccessor EntityAccessor = null; private const string MetadataName = \"MetadataName\"; namespace Microsoft.Content.Build.BuildWorker.UnitTest { using System; }", + "Text": "10 / 128DO start with underscore for private fieldsDO start static readonly fields, constants with capitalized caseDO NOT capitalize each word in so-called closed-form compound words\uF1C5.DO have \"Async\" explicitly in the Async method name to notice people how to use itproperlyFormatting (Mandatory)DO use spaces over tabs, and always show all spaces/tabs in IDETipsVisual Studio > TOOLS > Options > Text Editor > C# > Tabs > Insert spaces (Tab size:4)Visual Studio > Edit > Advanced > View White SpaceDO add using inside namespace declarationDO add a space when:1. for (var i = 0; i < 1; i++)2. if (a == b)Cross-platform codingOur code should supports multiple operating systems. Don't assume we only run (anddevelop) on Windows. Code should be sensitvie to the differences between OS's. Here aresome specifics to consider. private readonly Guid _userId = Guid.NewGuid(); private static readonly IEntityAccessor EntityAccessor = null; private const string MetadataName = \"MetadataName\"; namespace Microsoft.Content.Build.BuildWorker.UnitTest { using System; }", "Links": [ { "Uri": "http://msdn.microsoft.com/en-us/library/ms229043.aspx" @@ -663,27 +663,27 @@ }, { "Number": 11, - "Text": "11 / 125DO use Enviroment.NewLine instead of hard-coding the line break instead of \\r\\n, asWindows uses \\r\\n and OSX/Linux uses \\n.NoteBe aware that thes line-endings may cause problems in code when using @\"\" text blockswith line breaks.DO Use Path.Combine() or Path.DirectorySeparatorChar to separate directories. If this isnot possible (such as in scripting), use a forward slash /. Windows is more forgivingthan Linux in this regard.Unit tests and functional testsAssembly namingThe unit tests for the Microsoft.Foo assembly live in the Microsoft.Foo.Tests assembly.The functional tests for the Microsoft.Foo assmebly live in theMicrosoft.Foo.FunctionalTests assmebly.In general there should be exactly one unit test assebmly for each product runtimeassembly. In general there should be one functional test assembly per repo. Exceptions canbe made for both.Unit test class namingTest class names end with Test and live in the same namespace as the class being tested.For example, the unit tests for the Microsoft.Foo.Boo class would be in a Microsoft.Foo.Booclass in the test assembly.Unit test method namingUnit test method names must be descriptive about what is being tested, under whatconditions, and what the expectations are. Pascal casing and underscores can be used toimprove readability. The following test names are correct:The following test names are incorrect:PublicApiArgumentsShouldHaveNotNullAnnotationPublic_api_arguments_should_have_not_null_annotationTest1Constructor", + "Text": "11 / 128DO use Enviroment.NewLine instead of hard-coding the line break instead of \\r\\n, asWindows uses \\r\\n and OSX/Linux uses \\n.NoteBe aware that thes line-endings may cause problems in code when using @\"\" text blockswith line breaks.DO Use Path.Combine() or Path.DirectorySeparatorChar to separate directories. If this isnot possible (such as in scripting), use a forward slash /. Windows is more forgivingthan Linux in this regard.Unit tests and functional testsAssembly namingThe unit tests for the Microsoft.Foo assembly live in the Microsoft.Foo.Tests assembly.The functional tests for the Microsoft.Foo assmebly live in theMicrosoft.Foo.FunctionalTests assmebly.In general there should be exactly one unit test assebmly for each product runtimeassembly. In general there should be one functional test assembly per repo. Exceptions canbe made for both.Unit test class namingTest class names end with Test and live in the same namespace as the class being tested.For example, the unit tests for the Microsoft.Foo.Boo class would be in a Microsoft.Foo.Booclass in the test assembly.Unit test method namingUnit test method names must be descriptive about what is being tested, under whatconditions, and what the expectations are. Pascal casing and underscores can be used toimprove readability. The following test names are correct:The following test names are incorrect:PublicApiArgumentsShouldHaveNotNullAnnotationPublic_api_arguments_should_have_not_null_annotationTest1Constructor", "Links": [] }, { "Number": 12, - "Text": "12 / 125Unit test structureThe contents of every unit test should be split into three distinct stages, optionallyseparated by these comments:The crucial thing here is the Act stage is exactly one statement. That one statement isnothing more than a call to the one method that you are trying to test. keeping that onestatement as simple as possible is also very important. For example, this is not ideal:This style is not recomended because way too many things can go wrong in this onestatement. All the GetComplexParamN() calls can throw for a variety of reasons unrelated tothe test itself. It is thus unclear to someone running into a problem why the failure occured.The ideal pattern is to move the complex parameter building into the `Arrange section:Now the only reason the line with CallSomeMethod() can fail is if the method itself blew up.Testing exception messagesIn general testing the specific exception message in a unit test is important. This ensuresthat the exact desired exception is what is being tested rather than a different exception ofFormatStringGetData// Arrange// Act// Assertint result = myObj.CallSomeMethod(GetComplexParam1(), GetComplexParam2(), GetComplexParam3());// ArrangeP1 p1 = GetComplexParam1();P2 p2 = GetComplexParam2();P3 p3 = GetComplexParam3();// Actint result = myObj.CallSomeMethod(p1, p2, p3);// AssertAssert.AreEqual(1234, result);", + "Text": "12 / 128Unit test structureThe contents of every unit test should be split into three distinct stages, optionallyseparated by these comments:The crucial thing here is the Act stage is exactly one statement. That one statement isnothing more than a call to the one method that you are trying to test. keeping that onestatement as simple as possible is also very important. For example, this is not ideal:This style is not recomended because way too many things can go wrong in this onestatement. All the GetComplexParamN() calls can throw for a variety of reasons unrelated tothe test itself. It is thus unclear to someone running into a problem why the failure occured.The ideal pattern is to move the complex parameter building into the `Arrange section:Now the only reason the line with CallSomeMethod() can fail is if the method itself blew up.Testing exception messagesIn general testing the specific exception message in a unit test is important. This ensuresthat the exact desired exception is what is being tested rather than a different exception ofFormatStringGetData// Arrange// Act// Assertint result = myObj.CallSomeMethod(GetComplexParam1(), GetComplexParam2(), GetComplexParam3());// ArrangeP1 p1 = GetComplexParam1();P2 p2 = GetComplexParam2();P3 p3 = GetComplexParam3();// Actint result = myObj.CallSomeMethod(p1, p2, p3);// AssertAssert.AreEqual(1234, result);", "Links": [] }, { "Number": 13, - "Text": "13 / 125the same type. In order to verify the exact exception it is important to verify the message.Use xUnit.net's plethora of built-in assertionsxUnit.net includes many kinds of assertions – please use the most appropriate one for yourtest. This will make the tests a lot more readable and also allow the test runner report thebest possible errors (whether it's local or the CI machine). For example, these are bad:These are good:Parallel testsBy default all unit test assemblies should run in parallel mode, which is the default. Unittests shouldn't depend on any shared state, and so should generally be runnable inparallel. If the tests fail in parallel, the first thing to do is to figure out why; do not justdisable parallel tests!var ex = Assert.Throws( () => fruitBasket.GetBananaById(1234));Assert.Equal( \"1234\", ex.Message);Assert.Equal(true, someBool);Assert.True(\"abc123\" == someString);Assert.True(list1.Length == list2.Length);for (int i = 0; i < list1.Length; i++) { Assert.True( String.Equals list1[i], list2[i], StringComparison.OrdinalIgnoreCase));}Assert.True(someBool);Assert.Equal(\"abc123\", someString);// built-in collection assertions!Assert.Equal(list1, list2, StringComparer.OrdinalIgnoreCase);", + "Text": "13 / 128the same type. In order to verify the exact exception it is important to verify the message.Use xUnit.net's plethora of built-in assertionsxUnit.net includes many kinds of assertions – please use the most appropriate one for yourtest. This will make the tests a lot more readable and also allow the test runner report thebest possible errors (whether it's local or the CI machine). For example, these are bad:These are good:Parallel testsBy default all unit test assemblies should run in parallel mode, which is the default. Unittests shouldn't depend on any shared state, and so should generally be runnable inparallel. If the tests fail in parallel, the first thing to do is to figure out why; do not justdisable parallel tests!var ex = Assert.Throws( () => fruitBasket.GetBananaById(1234));Assert.Equal( \"1234\", ex.Message);Assert.Equal(true, someBool);Assert.True(\"abc123\" == someString);Assert.True(list1.Length == list2.Length);for (int i = 0; i < list1.Length; i++) { Assert.True( String.Equals list1[i], list2[i], StringComparison.OrdinalIgnoreCase));}Assert.True(someBool);Assert.Equal(\"abc123\", someString);// built-in collection assertions!Assert.Equal(list1, list2, StringComparer.OrdinalIgnoreCase);", "Links": [] }, { "Number": 14, - "Text": "14 / 125For functional tests it is reasonable to disable parallel tests.", + "Text": "14 / 128For functional tests it is reasonable to disable parallel tests.", "Links": [] }, { "Number": 15, - "Text": "15 / 125MarkdownMarkdown\uF1C5 is a lightweight markup language with plain text formatting syntax. Docfxsupports CommonMark\uF1C5 compliant Markdown parsed through the Markdig\uF1C5 parsingengine.Link to Math ExpressionsBlock QuotesThis is a block quote.AlertsNOTEInformation the user should notice even if skimming.\uF431TIPOptional information to help a user be more successful.\uF431IMPORTANTEssential information required for user success.\uF623CAUTIONNegative potential consequences of an action.\uF623WARNINGDangerous certain consequences of an action.\uF333", + "Text": "15 / 128MarkdownMarkdown\uF1C5 is a lightweight markup language with plain text formatting syntax. Docfxsupports CommonMark\uF1C5 compliant Markdown parsed through the Markdig\uF1C5 parsingengine.Link to Math ExpressionsBlock QuotesThis is a block quote.AlertsNOTEInformation the user should notice even if skimming.\uF431TIPOptional information to help a user be more successful.\uF431IMPORTANTEssential information required for user success.\uF623CAUTIONNegative potential consequences of an action.\uF623WARNINGDangerous certain consequences of an action.\uF333", "Links": [ { "Uri": "https://daringfireball.net/projects/markdown/" @@ -726,7 +726,7 @@ { "Number": 16, "NumberOfImages": 1, - "Text": "16 / 125ImageMermaid DiagramsFlowchartCode SnippetThe example highlights lines 2, line 5 to 7 and lines 9 to the end of the file.MY TODOThis is a TODO.TextOneTwoHardRoundDecisionResult 1Result 2", + "Text": "16 / 128ImageMermaid DiagramsFlowchartCode SnippetThe example highlights lines 2, line 5 to 7 and lines 9 to the end of the file.MY TODOThis is a TODO.TextOneTwoHardRoundDecisionResult 1Result 2", "Links": [ { "Uri": "https://learn.microsoft.com/en-us/media/learn/not-found/learn-not-found-light-mode.png?branch=main" @@ -738,12 +738,12 @@ }, { "Number": 17, - "Text": "17 / 125Math ExpressionsThis sentence uses $ delimiters to show math inline: The Cauchy-Schwarz InequalityThis expression uses \\$ to display a dollar sign: To split $100 in half, we calculate using System;using Azure;using Azure.Storage;using Azure.Storage.Blobs;class Program{ static void Main(string[] args) { // Define the connection string for the storage account string connectionString = \"DefaultEndpointsProtocol=https;AccountName=;AccountKey=;EndpointSuffix=core.windows.net\"; // Create a new BlobServiceClient using the connection string var blobServiceClient = new BlobServiceClient(connectionString); // Create a new container var container = blobServiceClient.CreateBlobContainer(\"mycontainer\"); // Upload a file to the container using (var fileStream = File.OpenRead(\"path/to/file.txt\")) { container.UploadBlob(\"file.txt\", fileStream); } // Download the file from the container var downloadedBlob = container.GetBlobClient(\"file.txt\").Download(); using (var fileStream = File.OpenWrite(\"path/to/downloaded-file.txt\")) { downloadedBlob.Value.Content.CopyTo(fileStream); } }}", + "Text": "17 / 128Math ExpressionsThis sentence uses $ delimiters to show math inline: The Cauchy-Schwarz InequalityThis expression uses \\$ to display a dollar sign: To split $100 in half, we calculate using System;using Azure;using Azure.Storage;using Azure.Storage.Blobs;class Program{ static void Main(string[] args) { // Define the connection string for the storage account string connectionString = \"DefaultEndpointsProtocol=https;AccountName=;AccountKey=;EndpointSuffix=core.windows.net\"; // Create a new BlobServiceClient using the connection string var blobServiceClient = new BlobServiceClient(connectionString); // Create a new container var container = blobServiceClient.CreateBlobContainer(\"mycontainer\"); // Upload a file to the container using (var fileStream = File.OpenRead(\"path/to/file.txt\")) { container.UploadBlob(\"file.txt\", fileStream); } // Download the file from the container var downloadedBlob = container.GetBlobClient(\"file.txt\").Download(); using (var fileStream = File.OpenWrite(\"path/to/downloaded-file.txt\")) { downloadedBlob.Value.Content.CopyTo(fileStream); } }}", "Links": [] }, { "Number": 18, - "Text": "18 / 125Custom Syntax HighlightingTabsLinuxWindowsThe above tab group was created with the following syntax:Tabs are indicated by using a specific link syntax within a Markdown header. The syntax canbe described as follows:A tab starts with a Markdown header, #, and is followed by a Markdown link [](). The textof the link will become the text of the tab header, displayed to the customer. In order forthe header to be recognized as a tab, the link itself must start with #tab/ and be followedby an ID representing the content of the tab. The ID is used to sync all same-ID tabs acrossthe page. Using the above example, when a user selects a tab with the link #tab/windows, alltabs with the link #tab/windows on the page will be selected.Dependent tabsresource storageAccount 'Microsoft.Storage/storageAccounts@2021-06-01' = { name: 'hello' // (...)}Content for Linux...# [Linux](#tab/linux)Content for Linux...# [Windows](#tab/windows)Content for Windows...---# [Tab Display Name](#tab/tab-id)", + "Text": "18 / 128Custom Syntax HighlightingTabsLinuxWindowsThe above tab group was created with the following syntax:Tabs are indicated by using a specific link syntax within a Markdown header. The syntax canbe described as follows:A tab starts with a Markdown header, #, and is followed by a Markdown link [](). The textof the link will become the text of the tab header, displayed to the customer. In order forthe header to be recognized as a tab, the link itself must start with #tab/ and be followedby an ID representing the content of the tab. The ID is used to sync all same-ID tabs acrossthe page. Using the above example, when a user selects a tab with the link #tab/windows, alltabs with the link #tab/windows on the page will be selected.Dependent tabsresource storageAccount 'Microsoft.Storage/storageAccounts@2021-06-01' = { name: 'hello' // (...)}Content for Linux...# [Linux](#tab/linux)Content for Linux...# [Windows](#tab/windows)Content for Windows...---# [Tab Display Name](#tab/tab-id)", "Links": [ { "Goto": { @@ -758,7 +758,7 @@ }, { "Number": 19, - "Text": "19 / 125It's possible to make the selection in one set of tabs dependent on the selection in anotherset of tabs. Here's an example of that in action:.NETTypeScriptREST APINotice how changing the Linux/Windows selection above changes the content in the .NETand TypeScript tabs. This is because the tab group defines two versions for each .NET andTypeScript, where the Windows/Linux selection above determines which version is shownfor .NET/TypeScript. Here's the markup that shows how this is done:DetailsDemo.NET content for Linux...# [.NET](#tab/dotnet/linux).NET content for Linux...# [.NET](#tab/dotnet/windows).NET content for Windows...# [TypeScript](#tab/typescript/linux)TypeScript content for Linux...# [TypeScript](#tab/typescript/windows)TypeScript content for Windows...# [REST API](#tab/rest)REST API content, independent of platform...---", + "Text": "19 / 128It's possible to make the selection in one set of tabs dependent on the selection in anotherset of tabs. Here's an example of that in action:.NETTypeScriptREST APINotice how changing the Linux/Windows selection above changes the content in the .NETand TypeScript tabs. This is because the tab group defines two versions for each .NET andTypeScript, where the Windows/Linux selection above determines which version is shownfor .NET/TypeScript. Here's the markup that shows how this is done:DetailsDemo.NET content for Linux...# [.NET](#tab/dotnet/linux).NET content for Linux...# [.NET](#tab/dotnet/windows).NET content for Windows...# [TypeScript](#tab/typescript/linux)TypeScript content for Linux...# [TypeScript](#tab/typescript/windows)TypeScript content for Windows...# [REST API](#tab/rest)REST API content, independent of platform...---", "Links": [ { "Goto": { @@ -773,7 +773,7 @@ }, { "Number": 20, - "Text": "20 / 125ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", + "Text": "20 / 128ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", "Links": [ { "Goto": { @@ -797,7 +797,7 @@ }, { "Number": 21, - "Text": "21 / 125Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllThis is a test class.Inheritanceobject\uF1C5 Class1Inherited Membersobject.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ToString()\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.GetHashCode()\uF1C5ConstructorsMethodsHello World.Class Class1public class Class1\uF12CClass1()public Class1()HelloWorld()public static void HelloWorld()", + "Text": "21 / 128Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllThis is a test class.Inheritanceobject\uF1C5 Class1Inherited Membersobject.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ToString()\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.GetHashCode()\uF1C5ConstructorsMethodsHello World.Class Class1public class Class1\uF12CClass1()public Class1()HelloWorld()public static void HelloWorld()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -902,7 +902,7 @@ }, { "Number": 22, - "Text": "22 / 125Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.GetType()\uF1C5 , object.Equals(object, object)\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5PropertiesProperty Valuestring\uF1C5Struct Issue5432public struct Issue5432Namepublic string Name { get; }", + "Text": "22 / 128Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.GetType()\uF1C5 , object.Equals(object, object)\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5PropertiesProperty Valuestring\uF1C5Struct Issue5432public struct Issue5432Namepublic string Name { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -998,7 +998,7 @@ }, { "Number": 23, - "Text": "23 / 125ClassesCSharpNamespace BuildFromCSharpSourceCode", + "Text": "23 / 128ClassesCSharpNamespace BuildFromCSharpSourceCode", "Links": [ { "Goto": { @@ -1013,7 +1013,7 @@ }, { "Number": 24, - "Text": "24 / 125Namespace:BuildFromCSharpSourceCodeInheritanceobject\uF1C5 CSharpInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParametersargs string\uF1C5[]Class CSharppublic class CSharp\uF12CMain(string[])public static void Main(string[] args)", + "Text": "24 / 128Namespace:BuildFromCSharpSourceCodeInheritanceobject\uF1C5 CSharpInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParametersargs string\uF1C5[]Class CSharppublic class CSharp\uF12CMain(string[])public static void Main(string[] args)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1145,7 +1145,7 @@ }, { "Number": 25, - "Text": "25 / 125NamespacesBuildFromProject.Issue8540ClassesClass1Class1.Issue8665Class1.Issue8696AttributeClass1.Issue8948Class1.TestInheritdocInheritdoc.Issue6366Inheritdoc.Issue6366.Class1Inheritdoc.Issue6366.Class2Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Issue8725A nice classStructsInheritdoc.Issue8129InterfacesClass1.IIssue8948IInheritdocEnumsNamespace BuildFromProject", + "Text": "25 / 128NamespacesBuildFromProject.Issue8540ClassesClass1Class1.Issue8665Class1.Issue8696AttributeClass1.Issue8948Class1.TestInheritdocInheritdoc.Issue6366Inheritdoc.Issue6366.Class1Inheritdoc.Issue6366.Class2Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Issue8725A nice classStructsInheritdoc.Issue8129InterfacesClass1.IIssue8948IInheritdocEnumsNamespace BuildFromProject", "Links": [ { "Goto": { @@ -1439,7 +1439,7 @@ }, { "Number": 26, - "Text": "26 / 125Class1.Issue9260", + "Text": "26 / 128Class1.Issue9260", "Links": [ { "Goto": { @@ -1463,7 +1463,7 @@ }, { "Number": 27, - "Text": "27 / 125NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", + "Text": "27 / 128NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", "Links": [ { "Goto": { @@ -1559,7 +1559,7 @@ }, { "Number": 28, - "Text": "28 / 125ClassesANamespace BuildFromProject.Issue8540.A", + "Text": "28 / 128ClassesANamespace BuildFromProject.Issue8540.A", "Links": [ { "Goto": { @@ -1574,7 +1574,7 @@ }, { "Number": 29, - "Text": "29 / 125Namespace:BuildFromProject.Issue8540.AAssembly:BuildFromProject.dllInheritanceobject\uF1C5 AInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Apublic class A\uF12C", + "Text": "29 / 128Namespace:BuildFromProject.Issue8540.AAssembly:BuildFromProject.dllInheritanceobject\uF1C5 AInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Apublic class A\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1697,7 +1697,7 @@ }, { "Number": 30, - "Text": "30 / 125ClassesBNamespace BuildFromProject.Issue8540.B", + "Text": "30 / 128ClassesBNamespace BuildFromProject.Issue8540.B", "Links": [ { "Goto": { @@ -1712,7 +1712,7 @@ }, { "Number": 31, - "Text": "31 / 125Namespace:BuildFromProject.Issue8540.BAssembly:BuildFromProject.dllInheritanceobject\uF1C5 BInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Bpublic class B\uF12C", + "Text": "31 / 128Namespace:BuildFromProject.Issue8540.BAssembly:BuildFromProject.dllInheritanceobject\uF1C5 BInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Bpublic class B\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1835,7 +1835,7 @@ }, { "Number": 32, - "Text": "32 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1ImplementsIClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsPricing models are used to calculate theoretical option values1-Black Scholes2-Black763-Black76Fut4-Equity Tree5-Variance Swap6-Dividend ForecastIConfiguration related helper and extension routines.Class Class1public class Class1 : IClass1\uF12CIssue1651()public void Issue1651()Issue1887()", + "Text": "32 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1ImplementsIClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsPricing models are used to calculate theoretical option values1-Black Scholes2-Black763-Black76Fut4-Equity Tree5-Variance Swap6-Dividend ForecastIConfiguration related helper and extension routines.Class Class1public class Class1 : IClass1\uF12CIssue1651()public void Issue1651()Issue1887()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1940,12 +1940,12 @@ }, { "Number": 33, - "Text": "33 / 125ExamplesRemarksFor example:Remarkspublic void Issue1887()Issue2623()public void Issue2623()MyClass myClass = new MyClass();void Update(){ myClass.Execute();}MyClass myClass = new MyClass();void Update(){ myClass.Execute();}Issue2723()public void Issue2723()NOTEThis is a . & \" '\uF431", + "Text": "33 / 128ExamplesRemarksFor example:Remarkspublic void Issue1887()Issue2623()public void Issue2623()MyClass myClass = new MyClass();void Update(){ myClass.Execute();}MyClass myClass = new MyClass();void Update(){ myClass.Execute();}Issue2723()public void Issue2723()NOTEThis is a . & \" '\uF431", "Links": [] }, { "Number": 34, - "Text": "34 / 125Inline .link\uF1C5ExamplesRemarksfor (var i = 0; i > 10; i++) // & \" 'var range = new Range { Min = 0, Max = 10 };var range = new Range { Min = 0, Max = 10 };Issue4017()public void Issue4017()public void HookMessageDeleted(BaseSocketClient client){ client.MessageDeleted += HandleMessageDelete;}public Task HandleMessageDelete(Cacheable cachedMessage, ISocketMessageChannel channel){ // check if the message exists in cache; if not, we cannot report what was removed if (!cachedMessage.HasValue) return; var message = cachedMessage.Value; Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\" + Environment.NewLine + message.Content); return Task.CompletedTask;}void Update(){", + "Text": "34 / 128Inline .link\uF1C5ExamplesRemarksfor (var i = 0; i > 10; i++) // & \" 'var range = new Range { Min = 0, Max = 10 };var range = new Range { Min = 0, Max = 10 };Issue4017()public void Issue4017()public void HookMessageDeleted(BaseSocketClient client){ client.MessageDeleted += HandleMessageDelete;}public Task HandleMessageDelete(Cacheable cachedMessage, ISocketMessageChannel channel){ // check if the message exists in cache; if not, we cannot report what was removed if (!cachedMessage.HasValue) return; var message = cachedMessage.Value; Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\" + Environment.NewLine + message.Content); return Task.CompletedTask;}void Update(){", "Links": [ { "Uri": "https://www.github.com/" @@ -1960,12 +1960,12 @@ }, { "Number": 35, - "Text": "35 / 125Remarks@\"\\\\?\\\" @\"\\\\?\\\"RemarksThere's really no reason to not believe that this class can test things.TermDescriptionA TermA DescriptionBee TermBee DescriptionType ParametersT myClass.Execute();}Issue4392()public void Issue4392()Issue7484()public void Issue7484()Issue8764()public void Issue8764() where T : unmanagedIssue896()", + "Text": "35 / 128Remarks@\"\\\\?\\\" @\"\\\\?\\\"RemarksThere's really no reason to not believe that this class can test things.TermDescriptionA TermA DescriptionBee TermBee DescriptionType ParametersT myClass.Execute();}Issue4392()public void Issue4392()Issue7484()public void Issue7484()Issue8764()public void Issue8764() where T : unmanagedIssue896()", "Links": [] }, { "Number": 36, - "Text": "36 / 125TestSee AlsoClass1.Test, Class1Calculates the determinant of a 3-dimensional matrix:Returns the smallest value:Returnsdouble\uF1C5This method should do something...RemarksThis is remarks.public void Issue896()Issue9216()public static double Issue9216()XmlCommentIncludeTag()public void XmlCommentIncludeTag()", + "Text": "36 / 128TestSee AlsoClass1.Test, Class1Calculates the determinant of a 3-dimensional matrix:Returns the smallest value:Returnsdouble\uF1C5This method should do something...RemarksThis is remarks.public void Issue896()Issue9216()public static double Issue9216()XmlCommentIncludeTag()public void XmlCommentIncludeTag()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.double" @@ -2007,7 +2007,7 @@ }, { "Number": 37, - "Text": "37 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948public interface Class1.IIssue8948DoNothing()void DoNothing()", + "Text": "37 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948public interface Class1.IIssue8948DoNothing()void DoNothing()", "Links": [ { "Goto": { @@ -2040,7 +2040,7 @@ }, { "Number": 38, - "Text": "38 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8665Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ConstructorsParametersfoo int\uF1C5Class Class1.Issue8665public class Class1.Issue8665\uF12CIssue8665()public Issue8665()Issue8665(int)public Issue8665(int foo)Issue8665(int, char)public Issue8665(int foo, char bar)", + "Text": "38 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8665Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ConstructorsParametersfoo int\uF1C5Class Class1.Issue8665public class Class1.Issue8665\uF12CIssue8665()public Issue8665()Issue8665(int)public Issue8665(int foo)Issue8665(int, char)public Issue8665(int foo, char bar)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2154,7 +2154,7 @@ }, { "Number": 39, - "Text": "39 / 125Parametersfoo int\uF1C5bar char\uF1C5Parametersfoo int\uF1C5bar char\uF1C5baz string\uF1C5PropertiesProperty Valuechar\uF1C5Property Valuestring\uF1C5Issue8665(int, char, string)public Issue8665(int foo, char bar, string baz)Barpublic char Bar { get; }Bazpublic string Baz { get; }", + "Text": "39 / 128Parametersfoo int\uF1C5bar char\uF1C5Parametersfoo int\uF1C5bar char\uF1C5baz string\uF1C5PropertiesProperty Valuechar\uF1C5Property Valuestring\uF1C5Issue8665(int, char, string)public Issue8665(int foo, char bar, string baz)Barpublic char Bar { get; }Bazpublic string Baz { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -2223,7 +2223,7 @@ }, { "Number": 40, - "Text": "40 / 125Property Valueint\uF1C5Foopublic int Foo { get; }", + "Text": "40 / 128Property Valueint\uF1C5Foopublic int Foo { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -2238,7 +2238,7 @@ }, { "Number": 41, - "Text": "41 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Attribute\uF1C5 Class1.Issue8696AttributeInherited MembersAttribute.Equals(object)\uF1C5 , Attribute.GetCustomAttribute(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttribute(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(Assembly)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, bool)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(Module)\uF1C5 , Attribute.GetCustomAttributes(Module, bool)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetHashCode()\uF1C5 ,Attribute.IsDefaultAttribute()\uF1C5 , Attribute.IsDefined(Assembly, Type)\uF1C5 ,Attribute.IsDefined(Assembly, Type, bool)\uF1C5 , Attribute.IsDefined(MemberInfo, Type)\uF1C5 ,Attribute.IsDefined(MemberInfo, Type, bool)\uF1C5 , Attribute.IsDefined(Module, Type)\uF1C5 ,Attribute.IsDefined(Module, Type, bool)\uF1C5 , Attribute.IsDefined(ParameterInfo, Type)\uF1C5 ,Attribute.IsDefined(ParameterInfo, Type, bool)\uF1C5 , Attribute.Match(object)\uF1C5 ,Class Class1.Issue8696Attributepublic class Class1.Issue8696Attribute : Attribute\uF12C\uF12C", + "Text": "41 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Attribute\uF1C5 Class1.Issue8696AttributeInherited MembersAttribute.Equals(object)\uF1C5 , Attribute.GetCustomAttribute(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttribute(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(Assembly)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, bool)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(Module)\uF1C5 , Attribute.GetCustomAttributes(Module, bool)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetHashCode()\uF1C5 ,Attribute.IsDefaultAttribute()\uF1C5 , Attribute.IsDefined(Assembly, Type)\uF1C5 ,Attribute.IsDefined(Assembly, Type, bool)\uF1C5 , Attribute.IsDefined(MemberInfo, Type)\uF1C5 ,Attribute.IsDefined(MemberInfo, Type, bool)\uF1C5 , Attribute.IsDefined(Module, Type)\uF1C5 ,Attribute.IsDefined(Module, Type, bool)\uF1C5 , Attribute.IsDefined(ParameterInfo, Type)\uF1C5 ,Attribute.IsDefined(ParameterInfo, Type, bool)\uF1C5 , Attribute.Match(object)\uF1C5 ,Class Class1.Issue8696Attributepublic class Class1.Issue8696Attribute : Attribute\uF12C\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2613,7 +2613,7 @@ }, { "Number": 42, - "Text": "42 / 125Attribute.TypeId\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsParametersdescription string\uF1C5boundsMin int\uF1C5boundsMax int\uF1C5validGameModes string\uF1C5[]hasMultipleSelections bool\uF1C5enumType Type\uF1C5Issue8696Attribute(string?, int, int, string[]?, bool,Type?)[Class1.Issue8696(\"Changes the name of the server in the server list\", 0, 0, null, false, null)]public Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)", + "Text": "42 / 128Attribute.TypeId\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsParametersdescription string\uF1C5boundsMin int\uF1C5boundsMax int\uF1C5validGameModes string\uF1C5[]hasMultipleSelections bool\uF1C5enumType Type\uF1C5Issue8696Attribute(string?, int, int, string[]?, bool,Type?)[Class1.Issue8696(\"Changes the name of the server in the server list\", 0, 0, null, false, null)]public Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" @@ -2727,7 +2727,7 @@ }, { "Number": 43, - "Text": "43 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8948ImplementsClass1.IIssue8948Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsDoes nothing with generic type T.Type ParametersTA generic type.Class Class1.Issue8948public class Class1.Issue8948 : Class1.IIssue8948\uF12CDoNothing()public void DoNothing()", + "Text": "43 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8948ImplementsClass1.IIssue8948Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsDoes nothing with generic type T.Type ParametersTA generic type.Class Class1.Issue8948public class Class1.Issue8948 : Class1.IIssue8948\uF12CDoNothing()public void DoNothing()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2850,7 +2850,7 @@ }, { "Number": 44, - "Text": "44 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllFieldsValue = 0This is a regular enum value.[Obsolete] OldAndUnusedValue = 1This is old and unused. You shouldn't use it anymore.[Obsolete(\"Use Value\")] OldAndUnusedValue2 = 2This is old and unused. You shouldn't use it anymore.Enum Class1.Issue9260public enum Class1.Issue9260", + "Text": "44 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllFieldsValue = 0This is a regular enum value.[Obsolete] OldAndUnusedValue = 1This is old and unused. You shouldn't use it anymore.[Obsolete(\"Use Value\")] OldAndUnusedValue2 = 2This is old and unused. You shouldn't use it anymore.Enum Class1.Issue9260public enum Class1.Issue9260", "Links": [ { "Goto": { @@ -2883,7 +2883,7 @@ }, { "Number": 45, - "Text": "45 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Class1.TestInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Class1.Testpublic class Class1.Test\uF12C", + "Text": "45 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Class1.TestInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Class1.Testpublic class Class1.Test\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2988,7 +2988,7 @@ }, { "Number": 46, - "Text": "46 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", + "Text": "46 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", "Links": [ { "Goto": { @@ -3021,7 +3021,7 @@ }, { "Number": 47, - "Text": "47 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 InheritdocImplementsIInheritdoc, IDisposable\uF1C5Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsPerforms application-defined tasks associated with freeing, releasing, or resettingunmanaged resources.This method should do something...Class Inheritdocpublic class Inheritdoc : IInheritdoc, IDisposable\uF12CDispose()public void Dispose()Issue7628()public void Issue7628()Issue7629()", + "Text": "47 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 InheritdocImplementsIInheritdoc, IDisposable\uF1C5Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsPerforms application-defined tasks associated with freeing, releasing, or resettingunmanaged resources.This method should do something...Class Inheritdocpublic class Inheritdoc : IInheritdoc, IDisposable\uF12CDispose()public void Dispose()Issue7628()public void Issue7628()Issue7629()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3144,12 +3144,12 @@ }, { "Number": 48, - "Text": "48 / 125This method should do something...public void Issue7629()", + "Text": "48 / 128This method should do something...public void Issue7629()", "Links": [] }, { "Number": 49, - "Text": "49 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Inheritdoc.Issue6366public class Inheritdoc.Issue6366\uF12C", + "Text": "49 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Inheritdoc.Issue6366public class Inheritdoc.Issue6366\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3254,7 +3254,7 @@ }, { "Number": 50, - "Text": "50 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1DerivedInheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 TThis text NOT inherited.parm2 int\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class1public abstract class Inheritdoc.Issue6366.Class1\uF12CTestMethod1(T, int)public abstract T TestMethod1(T parm1, int parm2)", + "Text": "50 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1DerivedInheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 TThis text NOT inherited.parm2 int\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class1public abstract class Inheritdoc.Issue6366.Class1\uF12CTestMethod1(T, int)public abstract T TestMethod1(T parm1, int parm2)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3395,12 +3395,12 @@ }, { "Number": 51, - "Text": "51 / 125ReturnsTThis text inherited.", + "Text": "51 / 128ReturnsTThis text inherited.", "Links": [] }, { "Number": 52, - "Text": "52 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 bool\uF1C5This text NOT inherited.parm2 int\uF1C5This text inherited.Returnsbool\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class2public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1\uF12C\uF12CTestMethod1(bool, int)public override bool TestMethod1(bool parm1, int parm2)", + "Text": "52 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 bool\uF1C5This text NOT inherited.parm2 int\uF1C5This text inherited.Returnsbool\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class2public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1\uF12C\uF12CTestMethod1(bool, int)public override bool TestMethod1(bool parm1, int parm2)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3568,7 +3568,7 @@ }, { "Number": 53, - "Text": "53 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue7035Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsClass Inheritdoc.Issue7035public class Inheritdoc.Issue7035\uF12CA()public void A()B()public void B()", + "Text": "53 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue7035Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsClass Inheritdoc.Issue7035public class Inheritdoc.Issue7035\uF12CA()public void A()B()public void B()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3673,7 +3673,7 @@ }, { "Number": 54, - "Text": "54 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllThis is a test class to have something for DocFX to document.Inheritanceobject\uF1C5 Inheritdoc.Issue7484Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5RemarksWe're going to talk about things now.BoolReturningMethod(bool)Simple method to generate docs for.DoDadA string that could have something.ConstructorsThis is a constructor to document.PropertiesClass Inheritdoc.Issue7484public class Inheritdoc.Issue7484\uF12CIssue7484()public Issue7484()DoDad", + "Text": "54 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllThis is a test class to have something for DocFX to document.Inheritanceobject\uF1C5 Inheritdoc.Issue7484Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5RemarksWe're going to talk about things now.BoolReturningMethod(bool)Simple method to generate docs for.DoDadA string that could have something.ConstructorsThis is a constructor to document.PropertiesClass Inheritdoc.Issue7484public class Inheritdoc.Issue7484\uF12CIssue7484()public Issue7484()DoDad", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3779,7 +3779,7 @@ "PageNumber": 55, "Coordinates": { "Left": 28, - "Top": 554.75 + "Top": 524.75 } } }, @@ -3788,7 +3788,7 @@ "PageNumber": 55, "Coordinates": { "Left": 28, - "Top": 554.75 + "Top": 524.75 } } }, @@ -3797,7 +3797,7 @@ "PageNumber": 55, "Coordinates": { "Left": 28, - "Top": 554.75 + "Top": 524.75 } } }, @@ -3823,7 +3823,7 @@ }, { "Number": 55, - "Text": "55 / 125A string that could have something.Property Valuestring\uF1C5MethodsSimple method to generate docs for.Parameterssource bool\uF1C5A meaningless boolean value, much like most questions in the world.Returnsbool\uF1C5An exactly equivalently meaningless boolean value, much like most answers in the world.RemarksI'd like to take a moment to thank all of those who helped me get to a place where I canwrite documentation like this.public string DoDad { get; }BoolReturningMethod(bool)public bool BoolReturningMethod(bool source)", + "Text": "55 / 128A string that could have something.Property Valuestring\uF1C5This is a test class to have something for DocFX to document.MethodsSimple method to generate docs for.Parameterssource bool\uF1C5A meaningless boolean value, much like most questions in the world.Returnsbool\uF1C5An exactly equivalently meaningless boolean value, much like most answers in the world.RemarksI'd like to take a moment to thank all of those who helped me get to a place where I canwrite documentation like this.public string DoDad { get; }BoolReturningMethod(bool)public bool BoolReturningMethod(bool source)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -3856,7 +3856,7 @@ }, { "Number": 56, - "Text": "56 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue8101Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsCreate a new tween.Parametersfrom int\uF1C5The starting value.to int\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5Class Inheritdoc.Issue8101public class Inheritdoc.Issue8101\uF12CTween(int, int, float, Action)public static object Tween(int from, int to, float duration, Action onChange)", + "Text": "56 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue8101Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsCreate a new tween.Parametersfrom int\uF1C5The starting value.to int\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5Class Inheritdoc.Issue8101public class Inheritdoc.Issue8101\uF12CTween(int, int, float, Action)public static object Tween(int from, int to, float duration, Action onChange)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4006,7 +4006,7 @@ }, { "Number": 57, - "Text": "57 / 125A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Create a new tween.Parametersfrom float\uF1C5The starting value.to float\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5<float\uF1C5>A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Tween(float, float, float, Action<float>)public static object Tween(float from, float to, float duration, Action onChange)", + "Text": "57 / 128A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Create a new tween.Parametersfrom float\uF1C5The starting value.to float\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5<float\uF1C5>A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Tween(float, float, float, Action<float>)public static object Tween(float from, float to, float duration, Action onChange)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4075,7 +4075,7 @@ }, { "Number": 58, - "Text": "58 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5ConstructorsParametersfoo string\uF1C5Struct Inheritdoc.Issue8129public struct Inheritdoc.Issue8129Issue8129(string)public Issue8129(string foo)", + "Text": "58 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5ConstructorsParametersfoo string\uF1C5Struct Inheritdoc.Issue8129public struct Inheritdoc.Issue8129Issue8129(string)public Issue8129(string foo)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -4171,7 +4171,7 @@ }, { "Number": 59, - "Text": "59 / 125Namespace:BuildFromProjectAssembly:BuildFromProject.dllA nice classInheritanceobject\uF1C5 Issue8725Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsAnother nice operationA nice operationSee AlsoClass1Class Issue8725public class Issue8725\uF12CMoreOperations()public void MoreOperations()MyOperation()public void MyOperation()", + "Text": "59 / 128Namespace:BuildFromProjectAssembly:BuildFromProject.dllA nice classInheritanceobject\uF1C5 Issue8725Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsAnother nice operationA nice operationSee AlsoClass1Class Issue8725public class Issue8725\uF12CMoreOperations()public void MoreOperations()MyOperation()public void MyOperation()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4285,7 +4285,7 @@ }, { "Number": 60, - "Text": "60 / 125ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", + "Text": "60 / 128ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", "Links": [ { "Goto": { @@ -4318,7 +4318,7 @@ }, { "Number": 61, - "Text": "61 / 125Namespace:BuildFromVBSourceCodeThis is the BaseClassInheritanceobject\uF1C5 BaseClass1DerivedClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 ,object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParameterskeyword Class1ReturnsDateTime\uF1C5Class BaseClass1public abstract class BaseClass1\uF12CWithDeclarationKeyword(Class1)public abstract DateTime WithDeclarationKeyword(Class1 keyword)", + "Text": "61 / 128Namespace:BuildFromVBSourceCodeThis is the BaseClassInheritanceobject\uF1C5 BaseClass1DerivedClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 ,object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParameterskeyword Class1This is the BaseClassReturnsDateTime\uF1C5This is the BaseClassClass BaseClass1public abstract class BaseClass1\uF12CWithDeclarationKeyword(Class1)public abstract DateTime WithDeclarationKeyword(Class1 keyword)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4468,7 +4468,7 @@ }, { "Number": 62, - "Text": "62 / 125Namespace:BuildFromVBSourceCodeThis is summary from vb class...Inheritanceobject\uF1C5 BaseClass1 Class1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 ,object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5FieldsThis is a Value typeField ValueClass1PropertiesProperty ValueClass Class1public class Class1 : BaseClass1\uF12C\uF12CValueClasspublic Class1 ValueClassKeyword[Obsolete(\"This member is obsolete.\", true)]public Class1 Keyword { get; }", + "Text": "62 / 128Namespace:BuildFromVBSourceCodeThis is summary from vb class...Inheritanceobject\uF1C5 BaseClass1 Class1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 ,object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5FieldsThis is a Value typeField ValueClass1This is summary from vb class...PropertiesClass Class1public class Class1 : BaseClass1\uF12C\uF12CValueClasspublic Class1 ValueClassKeyword[Obsolete(\"This member is obsolete.\", true)]public Class1 Keyword { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4618,7 +4618,7 @@ }, { "Number": 63, - "Text": "63 / 125Class1MethodsThis is a FunctionParametersname string\uF1C5Name as the String valueReturnsint\uF1C5Returns AhoooWhat is Sub?Parameterskeyword Class1ReturnsDateTime\uF1C5Value(string)public int Value(string name)WithDeclarationKeyword(Class1)public override DateTime WithDeclarationKeyword(Class1 keyword)", + "Text": "63 / 128Property ValueClass1This is summary from vb class...MethodsThis is a FunctionParametersname string\uF1C5Name as the String valueReturnsint\uF1C5Returns AhoooWhat is Sub?Parameterskeyword Class1This is summary from vb class...ReturnsValue(string)public int Value(string name)WithDeclarationKeyword(Class1)public override DateTime WithDeclarationKeyword(Class1 keyword)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -4638,15 +4638,6 @@ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, { "Goto": { "PageNumber": 62, @@ -4669,11 +4660,26 @@ }, { "Number": 64, - "Text": "64 / 125NamespacesCatLibrary.CoreClassesCatExceptionCatHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see theremarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classComplexICatExtensionIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classTomTom class is only inherit from Object. Not any member inside itself.TomFromBaseClassTomFromBaseClass inherits from @InterfacesIAnimalThis is basic interface of all animal.ICatCat's interfaceDelegatesFakeDelegateFake delegateNamespace CatLibrary", + "Text": "64 / 128DateTime\uF1C5This is summary from vb class...", + "Links": [ + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + } + ] + }, + { + "Number": 65, + "Text": "65 / 128NamespacesCatLibrary.CoreClassesCatExceptionCatHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see theremarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classComplexICatExtensionIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classTomTom class is only inherit from Object. Not any member inside itself.TomFromBaseClassTomFromBaseClass inherits from @InterfacesIAnimalThis is basic interface of all animal.ICatCat's interfaceDelegatesFakeDelegateFake delegateNamespace CatLibrary", "Links": [ { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -4682,7 +4688,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -4691,7 +4697,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -4700,7 +4706,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -4709,7 +4715,7 @@ }, { "Goto": { - "PageNumber": 76, + "PageNumber": 78, "Type": 2, "Coordinates": { "Top": 0 @@ -4718,7 +4724,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Type": 2, "Coordinates": { "Top": 0 @@ -4727,7 +4733,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Type": 2, "Coordinates": { "Top": 0 @@ -4736,7 +4742,7 @@ }, { "Goto": { - "PageNumber": 85, + "PageNumber": 88, "Type": 2, "Coordinates": { "Top": 0 @@ -4745,7 +4751,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Type": 2, "Coordinates": { "Top": 0 @@ -4754,7 +4760,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Type": 2, "Coordinates": { "Top": 0 @@ -4763,7 +4769,7 @@ }, { "Goto": { - "PageNumber": 95, + "PageNumber": 98, "Type": 2, "Coordinates": { "Top": 0 @@ -4772,7 +4778,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -4781,7 +4787,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -4790,7 +4796,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -4799,7 +4805,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -4808,7 +4814,7 @@ }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Type": 2, "Coordinates": { "Top": 0 @@ -4817,7 +4823,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -4826,7 +4832,7 @@ }, { "Goto": { - "PageNumber": 86, + "PageNumber": 89, "Type": 2, "Coordinates": { "Top": 0 @@ -4836,12 +4842,12 @@ ] }, { - "Number": 65, - "Text": "65 / 125MRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", + "Number": 66, + "Text": "66 / 128MRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", "Links": [ { "Goto": { - "PageNumber": 93, + "PageNumber": 96, "Type": 2, "Coordinates": { "Top": 0 @@ -4850,7 +4856,7 @@ }, { "Goto": { - "PageNumber": 94, + "PageNumber": 97, "Type": 2, "Coordinates": { "Top": 0 @@ -4859,7 +4865,7 @@ }, { "Goto": { - "PageNumber": 94, + "PageNumber": 97, "Type": 2, "Coordinates": { "Top": 0 @@ -4868,7 +4874,7 @@ }, { "Goto": { - "PageNumber": 94, + "PageNumber": 97, "Type": 2, "Coordinates": { "Top": 0 @@ -4878,12 +4884,12 @@ ] }, { - "Number": 66, - "Text": "66 / 125ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", + "Number": 67, + "Text": "67 / 128ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", "Links": [ { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -4892,7 +4898,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -4901,7 +4907,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -4910,7 +4916,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -4919,7 +4925,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -4928,7 +4934,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -4937,7 +4943,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -4946,7 +4952,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Type": 2, "Coordinates": { "Top": 0 @@ -4955,7 +4961,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Type": 2, "Coordinates": { "Top": 0 @@ -4964,7 +4970,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Type": 2, "Coordinates": { "Top": 0 @@ -4973,7 +4979,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -4982,7 +4988,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -4991,7 +4997,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -5000,7 +5006,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -5009,7 +5015,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5018,7 +5024,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5027,7 +5033,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5036,7 +5042,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5045,7 +5051,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5054,7 +5060,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5063,7 +5069,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5072,7 +5078,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5081,7 +5087,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -5090,7 +5096,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -5099,7 +5105,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -5108,7 +5114,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -5117,7 +5123,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -5126,7 +5132,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -5135,7 +5141,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -5144,7 +5150,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -5153,7 +5159,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -5162,7 +5168,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -5171,7 +5177,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -5180,7 +5186,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -5190,8 +5196,8 @@ ] }, { - "Number": 67, - "Text": "67 / 125Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllStruct ContainersRefTypeInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5Extension MethodsIssue231.Bar(ContainersRefType) , Issue231.Foo(ContainersRefType)FieldsColorCountField Valuelong\uF1C5PropertiesGetColorCountStruct ContainersRefTypepublic struct ContainersRefTypeColorCountpublic long ColorCountGetColorCountpublic long GetColorCount { get; }", + "Number": 68, + "Text": "68 / 128Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllStruct ContainersRefTypeInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5Extension MethodsIssue231.Bar(ContainersRefType) , Issue231.Foo(ContainersRefType)FieldsColorCountField Valuelong\uF1C5Struct ContainersRefTypePropertiesGetColorCountStruct ContainersRefTypepublic struct ContainersRefTypeColorCountpublic long ColorCountGetColorCount", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -5258,7 +5264,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5267,7 +5273,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5276,7 +5282,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5285,7 +5291,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Coordinates": { "Left": 28, "Top": 410.75 @@ -5294,7 +5300,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Coordinates": { "Left": 28, "Top": 410.75 @@ -5303,7 +5309,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Coordinates": { "Left": 28, "Top": 410.75 @@ -5312,7 +5318,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Coordinates": { "Left": 28, "Top": 410.75 @@ -5321,7 +5327,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Coordinates": { "Left": 28, "Top": 235.24994 @@ -5330,7 +5336,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Coordinates": { "Left": 28, "Top": 235.24994 @@ -5339,7 +5345,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Coordinates": { "Left": 28, "Top": 235.24994 @@ -5348,7 +5354,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Coordinates": { "Left": 28, "Top": 235.24994 @@ -5358,8 +5364,8 @@ ] }, { - "Number": 68, - "Text": "68 / 125Property Valuelong\uF1C5MethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Returnsint\uF1C5EventsEvent TypeEventHandler\uF1C5ContainersRefTypeNonRefMethod(params object[])public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)ContainersRefTypeEventHandlerpublic event EventHandler ContainersRefTypeEventHandler", + "Number": 69, + "Text": "69 / 128Property Valuelong\uF1C5Struct ContainersRefTypeMethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Struct ContainersRefTypeReturnsint\uF1C5Struct ContainersRefTypeEventsEvent Typepublic long GetColorCount { get; }ContainersRefTypeNonRefMethod(params object[])public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)ContainersRefTypeEventHandlerpublic event EventHandler ContainersRefTypeEventHandler", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -5387,7 +5393,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, + } + ] + }, + { + "Number": 70, + "Text": "70 / 128EventHandler\uF1C5Struct ContainersRefType", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" }, @@ -5400,12 +5412,12 @@ ] }, { - "Number": 69, - "Text": "69 / 125Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", + "Number": 71, + "Text": "71 / 128Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", "Links": [ { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5414,7 +5426,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5423,7 +5435,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5433,8 +5445,8 @@ ] }, { - "Number": 70, - "Text": "70 / 125Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ContainersRefType.ContainersRefTypeChildInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ClassContainersRefType.ContainersRefTypeChildpublic class ContainersRefType.ContainersRefTypeChild\uF12C", + "Number": 72, + "Text": "72 / 128Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ContainersRefType.ContainersRefTypeChildInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ClassContainersRefType.ContainersRefTypeChildpublic class ContainersRefType.ContainersRefTypeChild\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5510,7 +5522,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5519,7 +5531,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5528,7 +5540,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5538,12 +5550,12 @@ ] }, { - "Number": 71, - "Text": "71 / 125Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", + "Number": 73, + "Text": "73 / 128Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", "Links": [ { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5552,7 +5564,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5561,7 +5573,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5571,12 +5583,12 @@ ] }, { - "Number": 72, - "Text": "72 / 125Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", + "Number": 74, + "Text": "74 / 128Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", "Links": [ { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5585,7 +5597,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5594,7 +5606,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5604,8 +5616,8 @@ ] }, { - "Number": 73, - "Text": "73 / 125Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ExplicitLayoutClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class ExplicitLayoutClasspublic class ExplicitLayoutClass\uF12C", + "Number": 75, + "Text": "75 / 128Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ExplicitLayoutClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class ExplicitLayoutClasspublic class ExplicitLayoutClass\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5681,7 +5693,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5690,7 +5702,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5699,7 +5711,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5709,8 +5721,8 @@ ] }, { - "Number": 74, - "Text": "74 / 125Namespace:CatLibrary.CoreAssembly:CatLibrary.dllInheritanceobject\uF1C5 Issue231Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParametersc ContainersRefTypeParametersc ContainersRefTypeClass Issue231public static class Issue231\uF12CBar(ContainersRefType)public static void Bar(this ContainersRefType c)Foo(ContainersRefType)public static void Foo(this ContainersRefType c)", + "Number": 76, + "Text": "76 / 128Namespace:CatLibrary.CoreAssembly:CatLibrary.dllInheritanceobject\uF1C5 Issue231Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParametersc ContainersRefTypeParametersc ContainersRefTypeClass Issue231public static class Issue231\uF12CBar(ContainersRefType)public static void Bar(this ContainersRefType c)Foo(ContainersRefType)public static void Foo(this ContainersRefType c)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5786,7 +5798,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5795,7 +5807,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -5804,7 +5816,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5813,7 +5825,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -5822,7 +5834,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -5831,7 +5843,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -5840,7 +5852,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -5849,7 +5861,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -5858,7 +5870,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -5868,8 +5880,8 @@ ] }, { - "Number": 75, - "Text": "75 / 125Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTInheritanceobject\uF1C5 Exception\uF1C5 CatExceptionImplementsISerializable\uF1C5Inherited MembersException.GetBaseException()\uF1C5 ,Exception.GetObjectData(SerializationInfo, StreamingContext)\uF1C5 , Exception.GetType()\uF1C5 ,Exception.ToString()\uF1C5 , Exception.Data\uF1C5 , Exception.HelpLink\uF1C5 , Exception.HResult\uF1C5 ,Exception.InnerException\uF1C5 , Exception.Message\uF1C5 , Exception.Source\uF1C5 ,Exception.StackTrace\uF1C5 , Exception.TargetSite\uF1C5 , Exception.SerializeObjectState\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Class CatExceptionpublic class CatException : Exception, ISerializable\uF12C\uF12C", + "Number": 77, + "Text": "77 / 128Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTInheritanceobject\uF1C5 Exception\uF1C5 CatExceptionImplementsISerializable\uF1C5Inherited MembersException.GetBaseException()\uF1C5 ,Exception.GetObjectData(SerializationInfo, StreamingContext)\uF1C5 , Exception.GetType()\uF1C5 ,Exception.ToString()\uF1C5 , Exception.Data\uF1C5 , Exception.HelpLink\uF1C5 , Exception.HResult\uF1C5 ,Exception.InnerException\uF1C5 , Exception.Message\uF1C5 , Exception.Source\uF1C5 ,Exception.StackTrace\uF1C5 , Exception.TargetSite\uF1C5 , Exception.SerializeObjectState\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Class CatExceptionpublic class CatException : Exception, ISerializable\uF12C\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -6062,7 +6074,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6071,7 +6083,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6081,8 +6093,8 @@ ] }, { - "Number": 76, - "Text": "76 / 125Namespace:CatLibraryAssembly:CatLibrary.dllHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see theremarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classThis is a class talking about CAT\uF1C5.NOTE This is a CAT classRefer to IAnimal to see other animals.Type ParametersTThis type should be class and can new instance.KThis type is a struct type, class type can't be used for this parameter.Inheritanceobject\uF1C5 CatImplementsICat, IAnimalInherited MembersClass Cat[Serializable][Obsolete]public class Cat : ICat, IAnimal where T : class, new() where K : struct\uF12C", + "Number": 78, + "Text": "78 / 128Namespace:CatLibraryAssembly:CatLibrary.dllHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see theremarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classThis is a class talking about CAT\uF1C5.NOTE This is a CAT classRefer to IAnimal to see other animals.Type ParametersTThis type should be class and can new instance.KThis type is a struct type, class type can't be used for this parameter.Inheritanceobject\uF1C5 CatImplementsICat, IAnimalInherited MembersClass Cat[Serializable][Obsolete]public class Cat : ICat, IAnimal where T : class, new() where K : struct\uF12C", "Links": [ { "Uri": "https://en.wikipedia.org/wiki/Cat" @@ -6104,7 +6116,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6113,7 +6125,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6122,7 +6134,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Type": 2, "Coordinates": { "Top": 0 @@ -6131,7 +6143,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Type": 2, "Coordinates": { "Top": 0 @@ -6140,7 +6152,7 @@ }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Type": 2, "Coordinates": { "Top": 0 @@ -6149,7 +6161,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -6158,7 +6170,7 @@ }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Type": 2, "Coordinates": { "Top": 0 @@ -6168,8 +6180,8 @@ ] }, { - "Number": 77, - "Text": "77 / 125object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)ExamplesHere's example of how to create an instance of this class. As T is limited with class and K islimited with struct.As you see, here we bring in pointer so we need to add unsafe keyword.RemarksTHIS is remarks overridden in MARKDWON fileConstructorsDefault constructor.It's a complex constructor. The parameter will have some attributes.Parametersvar a = new Cat(object, int)();int catNumber = new int();unsafe{ a.GetFeetLength(catNumber);}Cat()public Cat()Cat(string, out int, string, bool)public Cat(string nickName, out int age, string realName, bool isHealthy)", + "Number": 79, + "Text": "79 / 128object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)ExamplesHere's example of how to create an instance of this class. As T is limited with class and K islimited with struct.As you see, here we bring in pointer so we need to add unsafe keyword.RemarksTHIS is remarks overridden in MARKDWON fileConstructorsDefault constructor.It's a complex constructor. The parameter will have some attributes.Parametersvar a = new Cat(object, int)();int catNumber = new int();unsafe{ a.GetFeetLength(catNumber);}Cat()public Cat()Cat(string, out int, string, bool)public Cat(string nickName, out int age, string realName, bool isHealthy)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" @@ -6227,7 +6239,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6236,7 +6248,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6245,7 +6257,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6254,7 +6266,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6263,7 +6275,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6272,7 +6284,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6281,7 +6293,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6290,7 +6302,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -6299,7 +6311,7 @@ }, { "Goto": { - "PageNumber": 92, + "PageNumber": 95, "Coordinates": { "Left": 28, "Top": 764 @@ -6308,7 +6320,7 @@ }, { "Goto": { - "PageNumber": 92, + "PageNumber": 95, "Coordinates": { "Left": 28, "Top": 764 @@ -6317,7 +6329,7 @@ }, { "Goto": { - "PageNumber": 92, + "PageNumber": 95, "Coordinates": { "Left": 28, "Top": 764 @@ -6326,7 +6338,7 @@ }, { "Goto": { - "PageNumber": 92, + "PageNumber": 95, "Coordinates": { "Left": 28, "Top": 764 @@ -6336,8 +6348,8 @@ ] }, { - "Number": 78, - "Text": "78 / 125nickName string\uF1C5it's string type.age int\uF1C5It's an out and ref parameter.realName string\uF1C5It's an out paramter.isHealthy bool\uF1C5It's an in parameter.Constructor with one generic parameter.ParametersownType TThis parameter type defined by class.FieldsField with attribute.Field ValueCat(T)public Cat(T ownType)isHealthy[ContextStatic][NonSerialized][Obsolete]public bool isHealthy", + "Number": 80, + "Text": "80 / 128nickName string\uF1C5it's string type.age int\uF1C5It's an out and ref parameter.realName string\uF1C5It's an out paramter.isHealthy bool\uF1C5It's an in parameter.Constructor with one generic parameter.ParametersownType TThis parameter type defined by class.FieldsField with attribute.Field ValueCat(T)public Cat(T ownType)isHealthy[ContextStatic][NonSerialized][Obsolete]public bool isHealthy", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -6378,8 +6390,8 @@ ] }, { - "Number": 79, - "Text": "79 / 125bool\uF1C5PropertiesHint cat's age.Property Valueint\uF1C5This is index property of Cat. You can see that the visibility is different between get and setmethod.Parametersa string\uF1C5Cat's name.Property Valueint\uF1C5Cat's number.EII property.Age[Obsolete]protected int Age { get; set; }this[string]public int this[string a] { protected get; set; }Name", + "Number": 81, + "Text": "81 / 128bool\uF1C5Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassPropertiesHint cat's age.Property Valueint\uF1C5Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassThis is index property of Cat. You can see that the visibility is different between get and setmethod.Parametersa string\uF1C5Cat's name.Age[Obsolete]protected int Age { get; set; }this[string]public int this[string a] { protected get; set; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" @@ -6407,7 +6419,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, + } + ] + }, + { + "Number": 82, + "Text": "82 / 128Property Valueint\uF1C5Cat's number.EII property.Property Valuestring\uF1C5Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassMethodsIt's an overridden summary in markdown formatThis is overriding methods. You can override parameter descriptions for methods, you caneven add exceptions to methods. Check the intermediate obj folder to see the data modelof the generated method/class. Override Yaml header should follow the data structure.Parametersdate DateTime\uF1C5This is overridden description for a parameter. id must be specified.Namepublic string Name { get; }Override CalculateFood Namepublic Dictionary> CalculateFood(DateTime date)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, @@ -6416,13 +6434,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - } - ] - }, - { - "Number": 80, - "Text": "80 / 125Property Valuestring\uF1C5MethodsIt's an overridden summary in markdown formatThis is overriding methods. You can override parameter descriptions for methods, you caneven add exceptions to methods. Check the intermediate obj folder to see the data modelof the generated method/class. Override Yaml header should follow the data structure.Parametersdate DateTime\uF1C5This is overridden description for a parameter. id must be specified.ReturnsDictionary\uF1C5>It's overridden description for return. type must be specified.ExceptionsArgumentException\uF1C5This is an overridden argument exception. you can add additional exception by addingdifferent exception type.public string Name { get; }Override CalculateFood Namepublic Dictionary> CalculateFood(DateTime date)Equals(object)", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" }, @@ -6440,11 +6452,17 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { + } + ] + }, + { + "Number": 83, + "Text": "83 / 128ReturnsDictionary\uF1C5>It's overridden description for return. type must be specified.ExceptionsArgumentException\uF1C5This is an overridden argument exception. you can add additional exception by addingdifferent exception type.Override the method of Object.Equals(object obj).Parametersobj object\uF1C5Can pass any class type.Returnsbool\uF1C5The return value tell you whehter the compare operation is successful.It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword.ParametersEquals(object)public override bool Equals(object obj)GetTailLength(int*, params object[])public long GetTailLength(int* catName, params object[] parameters)", + "Links": [ + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" + }, + { "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" }, { @@ -6485,13 +6503,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - } - ] - }, - { - "Number": 81, - "Text": "81 / 125Override the method of Object.Equals(object obj).Parametersobj object\uF1C5Can pass any class type.Returnsbool\uF1C5The return value tell you whehter the compare operation is successful.It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword.ParameterscatName int\uF1C5*Thie represent for cat name length.parameters object\uF1C5[]Optional parameters.Returnslong\uF1C5Return cat tail's length.public override bool Equals(object obj)GetTailLength(int*, params object[])public long GetTailLength(int* catName, params object[] parameters)Jump(T, K, ref bool)", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" }, @@ -6509,7 +6521,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, + } + ] + }, + { + "Number": 84, + "Text": "84 / 128catName int\uF1C5*Thie represent for cat name length.parameters object\uF1C5[]Optional parameters.Returnslong\uF1C5Return cat tail's length.This method have attribute above it.ParametersownType TType come from class define.anotherOwnType KType come from class define.cheat bool\uF1C5Hint whether this cat has cheat mode.ExceptionsArgumentException\uF1C5This is an argument exceptionJump(T, K, ref bool)[Conditional(\"Debug\")]public void Jump(T ownType, K anotherOwnType, ref bool cheat)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, @@ -6536,13 +6554,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - } - ] - }, - { - "Number": 82, - "Text": "82 / 125This method have attribute above it.ParametersownType TType come from class define.anotherOwnType KType come from class define.cheat bool\uF1C5Hint whether this cat has cheat mode.ExceptionsArgumentException\uF1C5This is an argument exceptionEventsEat event of this catEvent TypeEventHandler\uF1C5Operators[Conditional(\"Debug\")]public void Jump(T ownType, K anotherOwnType, ref bool cheat)ownEat[Obsolete(\"This _event handler_ is deprecated.\")]public event EventHandler ownEat", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" }, @@ -6560,7 +6572,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, + } + ] + }, + { + "Number": 85, + "Text": "85 / 128EventsEat event of this catEvent TypeEventHandler\uF1C5Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassOperatorsAddition operator of this class.Parameterslsr Cat..rsr int\uF1C5~~Returnsint\uF1C5ownEat[Obsolete(\"This _event handler_ is deprecated.\")]public event EventHandler ownEatoperator +(Cat, int)public static int operator +(Cat lsr, int rsr)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" }, @@ -6569,13 +6587,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - } - ] - }, - { - "Number": 83, - "Text": "83 / 125Addition operator of this class.Parameterslsr Cat..rsr int\uF1C5~~Returnsint\uF1C5Result with int type.Expilicit operator of this class.It means this cat can evolve to change to Tom. Tom and Jerry.Parameterssrc CatInstance of this class.ReturnsTomAdvanced class type of cat.operator +(Cat, int)public static int operator +(Cat lsr, int rsr)explicit operator Tom(Cat)public static explicit operator Tom(Cat src)", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, @@ -6596,16 +6608,31 @@ }, { "Goto": { - "PageNumber": 76, + "PageNumber": 78, "Type": 2, "Coordinates": { "Top": 0 } } + } + ] + }, + { + "Number": 86, + "Text": "86 / 128Result with int type.Expilicit operator of this class.It means this cat can evolve to change to Tom. Tom and Jerry.Parameterssrc CatInstance of this class.ReturnsTomAdvanced class type of cat.Similar with operaotr +, refer to that topic.Parameterslsr CatHere's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassrsr int\uF1C5explicit operator Tom(Cat)public static explicit operator Tom(Cat src)operator -(Cat, int)public static int operator -(Cat lsr, int rsr)", + "Links": [ + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, { "Goto": { - "PageNumber": 76, + "PageNumber": 78, "Type": 2, "Coordinates": { "Top": 0 @@ -6614,7 +6641,16 @@ }, { "Goto": { - "PageNumber": 95, + "PageNumber": 98, + "Type": 2, + "Coordinates": { + "Top": 0 + } + } + }, + { + "Goto": { + "PageNumber": 78, "Type": 2, "Coordinates": { "Top": 0 @@ -6624,8 +6660,8 @@ ] }, { - "Number": 84, - "Text": "84 / 125Similar with operaotr +, refer to that topic.Parameterslsr Catrsr int\uF1C5Returnsint\uF1C5operator -(Cat, int)public static int operator -(Cat lsr, int rsr)", + "Number": 87, + "Text": "87 / 128Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclassReturnsint\uF1C5Here's main class of this Demo. You can see mostly type of article within this class andyou for more detail, please see the remarks. this class is a template class. It has twoGeneric parameter. they are: T and K. The extension method of this class can refer toclass", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6635,30 +6671,12 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } } ] }, { - "Number": 85, - "Text": "85 / 125Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTJInheritanceobject\uF1C5 ComplexInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Complexpublic class Complex\uF12C", + "Number": 88, + "Text": "88 / 128Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTJInheritanceobject\uF1C5 ComplexInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5Class Complexpublic class Complex\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -6734,7 +6752,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6743,7 +6761,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6753,8 +6771,8 @@ ] }, { - "Number": 86, - "Text": "86 / 125Namespace:CatLibraryAssembly:CatLibrary.dllFake delegateParametersnum long\uF1C5Fake paraname string\uF1C5Fake parascores object\uF1C5[]Optional Parameter.Returnsint\uF1C5Return a fake number to confuse you.Type ParametersTFake paraDelegate FakeDelegatepublic delegate int FakeDelegate(long num, string name, params object[] scores)", + "Number": 89, + "Text": "89 / 128Namespace:CatLibraryAssembly:CatLibrary.dllFake delegateParametersnum long\uF1C5Fake paraname string\uF1C5Fake parascores object\uF1C5[]Optional Parameter.Returnsint\uF1C5Return a fake number to confuse you.Type ParametersTFake paraDelegate FakeDelegatepublic delegate int FakeDelegate(long num, string name, params object[] scores)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -6794,7 +6812,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6803,7 +6821,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6813,8 +6831,8 @@ ] }, { - "Number": 87, - "Text": "87 / 125Namespace:CatLibraryAssembly:CatLibrary.dllThis is basic interface of all animal.Welcome to the Animal world!RemarksTHIS is remarks overridden in MARKDWON filePropertiesReturn specific number animal's name.Parametersindex int\uF1C5Animal number.Property Valuestring\uF1C5Animal name.Name of Animal.Interface IAnimalpublic interface IAnimalthis[int]string this[int index] { get; }Name", + "Number": 90, + "Text": "90 / 128Namespace:CatLibraryAssembly:CatLibrary.dllThis is basic interface of all animal.Welcome to the Animal world!RemarksTHIS is remarks overridden in MARKDWON filePropertiesReturn specific number animal's name.Parametersindex int\uF1C5Animal number.Property Valuestring\uF1C5Animal name.Name of Animal.Interface IAnimalpublic interface IAnimalthis[int]string this[int index] { get; }Name", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6836,7 +6854,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6845,7 +6863,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6855,8 +6873,8 @@ ] }, { - "Number": 88, - "Text": "88 / 125Property Valuestring\uF1C5MethodsAnimal's eat method.Feed the animal with some foodParametersfood string\uF1C5Food to eatOverload method of eat. This define the animal eat by which tool.Parameterstool Toolstring Name { get; }Eat()void Eat()Eat(string)void Eat(string food)Eat(Tool)void Eat(Tool tool) where Tool : class", + "Number": 91, + "Text": "91 / 128Property Valuestring\uF1C5This is basic interface of all animal.MethodsAnimal's eat method.Feed the animal with some foodParametersfood string\uF1C5Food to eatOverload method of eat. This define the animal eat by which tool.Parametersstring Name { get; }Eat()void Eat()Eat(string)void Eat(string food)Eat(Tool)void Eat(Tool tool) where Tool : class", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -6879,13 +6897,13 @@ ] }, { - "Number": 89, - "Text": "89 / 125Tool name.Type ParametersToolIt's a class type.", + "Number": 92, + "Text": "92 / 128tool ToolTool name.Type ParametersToolIt's a class type.", "Links": [] }, { - "Number": 90, - "Text": "90 / 125Namespace:CatLibraryAssembly:CatLibrary.dllCat's interfaceInherited MembersIAnimal.Name , IAnimal.this[int] , IAnimal.Eat() , IAnimal.Eat(Tool) ,IAnimal.Eat(string)Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)Eventseat event of cat. Every cat must implement this event.Event TypeEventHandler\uF1C5Interface ICatpublic interface ICat : IAnimaleatevent EventHandler eat", + "Number": 93, + "Text": "93 / 128Namespace:CatLibraryAssembly:CatLibrary.dllCat's interfaceInherited MembersIAnimal.Name , IAnimal.this[int] , IAnimal.Eat() , IAnimal.Eat(Tool) ,IAnimal.Eat(string)Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)Eventseat event of cat. Every cat must implement this event.Event TypeEventHandler\uF1C5Cat's interfaceInterface ICatpublic interface ICat : IAnimaleatevent EventHandler eat", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" @@ -6898,7 +6916,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6907,7 +6925,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -6916,7 +6934,7 @@ }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Coordinates": { "Left": 28, "Top": 90.499939 @@ -6925,7 +6943,7 @@ }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Coordinates": { "Left": 28, "Top": 90.499939 @@ -6934,7 +6952,7 @@ }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Coordinates": { "Left": 28, "Top": 425.75 @@ -6943,7 +6961,7 @@ }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Coordinates": { "Left": 28, "Top": 425.75 @@ -6952,52 +6970,52 @@ }, { "Goto": { - "PageNumber": 88, + "PageNumber": 91, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, { "Goto": { - "PageNumber": 88, + "PageNumber": 91, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, { "Goto": { - "PageNumber": 88, + "PageNumber": 91, "Coordinates": { "Left": 28, - "Top": 214.24994 + "Top": 184.24994 } } }, { "Goto": { - "PageNumber": 88, + "PageNumber": 91, "Coordinates": { "Left": 28, - "Top": 449.74994 + "Top": 419.74994 } } }, { "Goto": { - "PageNumber": 88, + "PageNumber": 91, "Coordinates": { "Left": 28, - "Top": 449.74994 + "Top": 419.74994 } } }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -7006,7 +7024,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -7015,7 +7033,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -7024,7 +7042,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -7033,7 +7051,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -7042,7 +7060,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -7051,7 +7069,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -7060,7 +7078,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 320.75 @@ -7069,7 +7087,7 @@ }, { "Goto": { - "PageNumber": 92, + "PageNumber": 95, "Coordinates": { "Left": 28, "Top": 764 @@ -7078,7 +7096,7 @@ }, { "Goto": { - "PageNumber": 92, + "PageNumber": 95, "Coordinates": { "Left": 28, "Top": 764 @@ -7087,7 +7105,7 @@ }, { "Goto": { - "PageNumber": 92, + "PageNumber": 95, "Coordinates": { "Left": 28, "Top": 764 @@ -7096,7 +7114,7 @@ }, { "Goto": { - "PageNumber": 92, + "PageNumber": 95, "Coordinates": { "Left": 28, "Top": 764 @@ -7106,8 +7124,8 @@ ] }, { - "Number": 91, - "Text": "91 / 125Namespace:CatLibraryAssembly:CatLibrary.dllIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classInheritanceobject\uF1C5 ICatExtensionInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsExtension method to let cat playParametersicat ICatCattoy ContainersRefType.ColorTypeSomething to playClass ICatExtensionpublic static class ICatExtension\uF12CPlay(ICat, ColorType)public static void Play(this ICat icat, ContainersRefType.ColorType toy)", + "Number": 94, + "Text": "94 / 128Namespace:CatLibraryAssembly:CatLibrary.dllIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classInheritanceobject\uF1C5 ICatExtensionInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsExtension method to let cat playParametersicat ICatCattoy ContainersRefType.ColorTypeSomething to playClass ICatExtensionpublic static class ICatExtension\uF12CPlay(ICat, ColorType)public static void Play(this ICat icat, ContainersRefType.ColorType toy)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7183,7 +7201,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -7192,7 +7210,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -7201,7 +7219,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -7210,7 +7228,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -7219,7 +7237,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -7228,7 +7246,7 @@ }, { "Goto": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -7237,7 +7255,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -7246,7 +7264,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -7256,8 +7274,8 @@ ] }, { - "Number": 92, - "Text": "92 / 125Extension method hint that how long the cat can sleep.Parametersicat ICatThe type will be extended.hours long\uF1C5The length of sleep.Sleep(ICat, long)public static void Sleep(this ICat icat, long hours)", + "Number": 95, + "Text": "95 / 128Extension method hint that how long the cat can sleep.Parametersicat ICatThe type will be extended.hours long\uF1C5The length of sleep.Sleep(ICat, long)public static void Sleep(this ICat icat, long hours)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -7270,7 +7288,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -7280,12 +7298,12 @@ ] }, { - "Number": 93, - "Text": "93 / 125Namespace:CatLibraryAssembly:CatLibrary.dllGeneric delegate with many constrains.Parametersk KType K.t TType T.l LType L.Type ParametersKGeneric K.TGeneric T.LGeneric L.Delegate MRefDelegatepublic delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable", + "Number": 96, + "Text": "96 / 128Namespace:CatLibraryAssembly:CatLibrary.dllGeneric delegate with many constrains.Parametersk KType K.t TType T.l LType L.Type ParametersKGeneric K.TGeneric T.LGeneric L.Delegate MRefDelegatepublic delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable", "Links": [ { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -7294,7 +7312,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -7304,8 +7322,8 @@ ] }, { - "Number": 94, - "Text": "94 / 125Namespace:CatLibraryAssembly:CatLibrary.dllDelegate in the namespaceParameterspics List\uF1C5a name list of pictures.name string\uF1C5give out the needed name.Delegate MRefNormalDelegatepublic delegate void MRefNormalDelegate(List pics, out string name)", + "Number": 97, + "Text": "97 / 128Namespace:CatLibraryAssembly:CatLibrary.dllDelegate in the namespaceParameterspics List\uF1C5a name list of pictures.name string\uF1C5give out the needed name.Delegate MRefNormalDelegatepublic delegate void MRefNormalDelegate(List pics, out string name)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" @@ -7336,7 +7354,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -7345,7 +7363,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -7355,8 +7373,8 @@ ] }, { - "Number": 95, - "Text": "95 / 125Namespace:CatLibraryAssembly:CatLibrary.dllTom class is only inherit from Object. Not any member inside itself.Inheritanceobject\uF1C5 TomDerivedTomFromBaseClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis is a Tom Method with complex type as returnParametersa ComplexA complex inputb Tuple\uF1C5Another complex inputClass Tompublic class Tom\uF12CTomMethod(Complex, Tuple)public Complex TomMethod(Complex a, Tuple b)", + "Number": 98, + "Text": "98 / 128Namespace:CatLibraryAssembly:CatLibrary.dllTom class is only inherit from Object. Not any member inside itself.Inheritanceobject\uF1C5 TomDerivedTomFromBaseClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsThis is a Tom Method with complex type as returnParametersa ComplexA complex inputb Tuple\uF1C5Another complex inputClass Tompublic class Tom\uF12CTomMethod(Complex, Tuple)public Complex TomMethod(Complex a, Tuple b)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7450,7 +7468,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -7459,7 +7477,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -7468,7 +7486,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7477,7 +7495,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7486,7 +7504,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7495,7 +7513,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7504,7 +7522,7 @@ }, { "Goto": { - "PageNumber": 85, + "PageNumber": 88, "Type": 2, "Coordinates": { "Top": 0 @@ -7513,7 +7531,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7522,7 +7540,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7531,7 +7549,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7540,7 +7558,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7549,7 +7567,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7558,7 +7576,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7567,7 +7585,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7576,7 +7594,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7585,7 +7603,7 @@ }, { "Goto": { - "PageNumber": 95, + "PageNumber": 98, "Type": 2, "Coordinates": { "Top": 0 @@ -7595,8 +7613,8 @@ ] }, { - "Number": 96, - "Text": "96 / 125ReturnsComplexComplex TomFromBaseClassExceptionsNotImplementedException\uF1C5This is not implementedArgumentException\uF1C5This is the exception to be thrown when implementedCatExceptionThis is the exception in current documentation", + "Number": 99, + "Text": "99 / 128ReturnsComplexComplex TomFromBaseClassExceptionsNotImplementedException\uF1C5This is not implementedArgumentException\uF1C5This is the exception to be thrown when implementedCatExceptionThis is the exception in current documentation", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -7627,7 +7645,7 @@ }, { "Goto": { - "PageNumber": 85, + "PageNumber": 88, "Type": 2, "Coordinates": { "Top": 0 @@ -7636,7 +7654,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7645,7 +7663,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7654,7 +7672,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7663,7 +7681,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7672,7 +7690,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7681,7 +7699,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7690,7 +7708,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7699,7 +7717,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7708,7 +7726,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -7717,7 +7735,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -7727,8 +7745,8 @@ ] }, { - "Number": 97, - "Text": "97 / 125Namespace:CatLibraryAssembly:CatLibrary.dllTomFromBaseClass inherits from @Inheritanceobject\uF1C5 Tom TomFromBaseClassInherited MembersTom.TomMethod(Complex, Tuple) ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ConstructorsThis is a #ctor with parameterParametersk int\uF1C5Class TomFromBaseClasspublic class TomFromBaseClass : Tom\uF12C\uF12CTomFromBaseClass(int)public TomFromBaseClass(int k)", + "Number": 100, + "Text": "100 / 128Namespace:CatLibraryAssembly:CatLibrary.dllTomFromBaseClass inherits from @Inheritanceobject\uF1C5 Tom TomFromBaseClassInherited MembersTom.TomMethod(Complex, Tuple) ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5ConstructorsThis is a #ctor with parameterParametersk int\uF1C5Class TomFromBaseClasspublic class TomFromBaseClass : Tom\uF12C\uF12CTomFromBaseClass(int)public TomFromBaseClass(int k)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7813,7 +7831,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -7822,7 +7840,7 @@ }, { "Goto": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -7831,7 +7849,7 @@ }, { "Goto": { - "PageNumber": 95, + "PageNumber": 98, "Type": 2, "Coordinates": { "Top": 0 @@ -7840,7 +7858,7 @@ }, { "Goto": { - "PageNumber": 95, + "PageNumber": 98, "Coordinates": { "Left": 28, "Top": 332.75 @@ -7850,12 +7868,12 @@ ] }, { - "Number": 98, - "Text": "98 / 125EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", + "Number": 101, + "Text": "101 / 128EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", "Links": [ { "Goto": { - "PageNumber": 99, + "PageNumber": 102, "Type": 2, "Coordinates": { "Top": 0 @@ -7864,7 +7882,7 @@ }, { "Goto": { - "PageNumber": 99, + "PageNumber": 102, "Type": 2, "Coordinates": { "Top": 0 @@ -7874,8 +7892,8 @@ ] }, { - "Number": 99, - "Text": "99 / 125Namespace:MRef.Demo.EnumerationAssembly:CatLibrary.dllEnumeration ColorTypeFieldsRed = 0this color is redBlue = 1blue like riverYellow = 2yellow comes from desertRemarksRed/Blue/Yellow can become all color you want.See Alsoobject\uF1C5Enum ColorTypepublic enum ColorType", + "Number": 102, + "Text": "102 / 128Namespace:MRef.Demo.EnumerationAssembly:CatLibrary.dllEnumeration ColorTypeFieldsRed = 0this color is redBlue = 1blue like riverYellow = 2yellow comes from desertRemarksRed/Blue/Yellow can become all color you want.See Alsoobject\uF1C5Enum ColorTypepublic enum ColorType", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7894,7 +7912,7 @@ }, { "Goto": { - "PageNumber": 98, + "PageNumber": 101, "Type": 2, "Coordinates": { "Top": 0 @@ -7904,8 +7922,8 @@ ] }, { - "Number": 100, - "Text": "100 / 125| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Swagger PetstoreDescribe APIs in Pet StorepetDescription for pet tagAddPetAdd a new pet to the storeRequestParametersNameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples405Invalid inputNOTE: Add pet only when you needs.UpdatePetUpdate an existing petRequestParametersPOST /petPUT /pet", + "Number": 103, + "Text": "103 / 128| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Swagger PetstoreDescribe APIs in Pet StorepetDescription for pet tagAddPetAdd a new pet to the storeRequestParametersNameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples405Invalid inputNOTE: Add pet only when you needs.UpdatePetUpdate an existing petRequestParametersPOST /petPUT /pet", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_addPet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FaddPet%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -7945,7 +7963,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -7955,8 +7973,8 @@ ] }, { - "Number": 101, - "Text": "101 / 125| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples400Invalid ID supplied404Pet not found405Validation exceptionFindPetsByStatusFinds Pets by statusMultiple status values can be provided with comma separated stringsRequestParametersNameTypeDefaultNotes*statusStatus values that need to be considered for filterResponsesStatus CodeTypeDescriptionSamples200Pet[]successful operation400Invalid status valueFindPetsByTagsGET /pet/findByStatus?status", + "Number": 104, + "Text": "104 / 128| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples400Invalid ID supplied404Pet not found405Validation exceptionFindPetsByStatusFinds Pets by statusMultiple status values can be provided with comma separated stringsRequestParametersNameTypeDefaultNotes*statusStatus values that need to be considered for filterResponsesStatus CodeTypeDescriptionSamples200Pet[]successful operation400Invalid status valueFindPetsByTagsGET /pet/findByStatus?status", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByStatus.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByStatus%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -7996,7 +8014,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -8005,7 +8023,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -8015,8 +8033,8 @@ ] }, { - "Number": 102, - "Text": "102 / 125| Improve this Doc\uF1C5View Source\uF1C5Finds Pets by tagsMuliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 fortesting.RequestParametersNameTypeDefaultNotes*tagsTags to filter byResponsesStatus CodeTypeDescriptionSamples200Pet[]successful operation400Invalid tag valueDeletePetDeletes a petRequestParametersNameTypeDefaultNotesapi_key*petIdPet id to deleteResponsesGET /pet/findByTags?tagsDELETE /pet/{petId}", + "Number": 105, + "Text": "105 / 128| Improve this Doc\uF1C5View Source\uF1C5Finds Pets by tagsMuliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 fortesting.RequestParametersNameTypeDefaultNotes*tagsTags to filter byResponsesStatus CodeTypeDescriptionSamples200Pet[]successful operation400Invalid tag valueDeletePetDeletes a petRequestParametersNameTypeDefaultNotesapi_key*petIdPet id to deleteResponsesGET /pet/findByTags?tagsDELETE /pet/{petId}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deletePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeletePet%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8038,7 +8056,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -8048,8 +8066,8 @@ ] }, { - "Number": 103, - "Text": "103 / 125| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples400Invalid ID supplied404Pet not foundGetPetByIdFind pet by IDReturns a single petRequestParametersNameTypeDefaultNotes*petIdID of pet to returnResponsesStatus CodeTypeDescriptionSamples200Petsuccessful operation400Invalid ID supplied404Pet not foundUpdatePetWithFormUpdates a pet in the store with form dataRequestGET /pet/{petId}POST /pet/{petId}", + "Number": 106, + "Text": "106 / 128| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples400Invalid ID supplied404Pet not foundGetPetByIdFind pet by IDReturns a single petRequestParametersNameTypeDefaultNotes*petIdID of pet to returnResponsesStatus CodeTypeDescriptionSamples200Petsuccessful operation400Invalid ID supplied404Pet not foundUpdatePetWithFormUpdates a pet in the store with form dataRequestGET /pet/{petId}POST /pet/{petId}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getPetById.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetPetById%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8089,7 +8107,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -8099,8 +8117,8 @@ ] }, { - "Number": 104, - "Text": "104 / 125| Improve this Doc\uF1C5View Source\uF1C5ParametersNameTypeDefaultNotes*petIdID of pet that needs to be updatednameUpdated name of the petstatusUpdated status of the petResponsesStatus CodeTypeDescriptionSamples405Invalid inputUploadFileuploads an imageRequestParametersNameTypeDefaultNotes*petIdID of pet to updateadditionalMetadataAdditional data to pass to serverfilefile to uploadResponsesStatus CodeTypeDescriptionSamples200ApiResponsesuccessful operationPOST /pet/{petId}/uploadImage", + "Number": 107, + "Text": "107 / 128| Improve this Doc\uF1C5View Source\uF1C5ParametersNameTypeDefaultNotes*petIdID of pet that needs to be updatednameUpdated name of the petstatusUpdated status of the petResponsesStatus CodeTypeDescriptionSamples405Invalid inputUploadFileuploads an imageRequestParametersNameTypeDefaultNotes*petIdID of pet to updateadditionalMetadataAdditional data to pass to serverfilefile to uploadResponsesStatus CodeTypeDescriptionSamples200ApiResponsesuccessful operationPOST /pet/{petId}/uploadImage", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_uploadFile.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FuploadFile%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8122,7 +8140,7 @@ }, { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 525.49969 @@ -8131,7 +8149,7 @@ }, { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 525.49969 @@ -8141,8 +8159,8 @@ ] }, { - "Number": 105, - "Text": "105 / 125| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5storeAccess to Petstore ordersAdditional description for store tagAddPetAdd a new pet to the storeRequestParametersNameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples405Invalid inputNOTE: Add pet only when you needs.GetInventoryReturns pet inventories by statusReturns a map of status codes to quantitiesRequestResponsesPOST /petGET /store/inventory", + "Number": 108, + "Text": "108 / 128| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5storeAccess to Petstore ordersAdditional description for store tagAddPetAdd a new pet to the storeRequestParametersNameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples405Invalid inputNOTE: Add pet only when you needs.GetInventoryReturns pet inventories by statusReturns a map of status codes to quantitiesRequestResponsesPOST /petGET /store/inventory", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_addPet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FaddPet%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8182,7 +8200,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -8192,8 +8210,8 @@ ] }, { - "Number": 106, - "Text": "106 / 125| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples200objectsuccessful operationPlaceOrderPlace an order for a petRequestParametersNameTypeDefaultNotes*bodyOrderorder placed for purchasing the petResponsesStatus CodeTypeDescriptionSamples200Ordersuccessful operation400Invalid OrderDeleteOrderDelete purchase order by IDFor valid response try integer IDs with positive integer value. Negative or non-integervalues will generate API errorsRequestParametersPOST /store/orderDELETE /store/order/{orderId}", + "Number": 109, + "Text": "109 / 128| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples200objectsuccessful operationPlaceOrderPlace an order for a petRequestParametersNameTypeDefaultNotes*bodyOrderorder placed for purchasing the petResponsesStatus CodeTypeDescriptionSamples200Ordersuccessful operation400Invalid OrderDeleteOrderDelete purchase order by IDFor valid response try integer IDs with positive integer value. Negative or non-integervalues will generate API errorsRequestParametersPOST /store/orderDELETE /store/order/{orderId}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_placeOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FplaceOrder%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8233,7 +8251,7 @@ }, { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 361.24969 @@ -8242,7 +8260,7 @@ }, { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 361.24969 @@ -8252,8 +8270,8 @@ ] }, { - "Number": 107, - "Text": "107 / 125| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*orderIdID of the order that needs to be deletedResponsesStatus CodeTypeDescriptionSamples400Invalid ID supplied404Order not foundGetOrderByIdFind purchase order by IDFor valid response try integer IDs with value >= 1 and <= 10. Other values will generatedexceptionsRequestParametersNameTypeDefaultNotes*orderIdID of pet that needs to be fetchedResponsesStatus CodeTypeDescriptionSamples200Ordersuccessful operation400Invalid ID supplied404Order not foundGET /store/order/{orderId}", + "Number": 110, + "Text": "110 / 128| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*orderIdID of the order that needs to be deletedResponsesStatus CodeTypeDescriptionSamples400Invalid ID supplied404Order not foundGetOrderByIdFind purchase order by IDFor valid response try integer IDs with value >= 1 and <= 10. Other values will generatedexceptionsRequestParametersNameTypeDefaultNotes*orderIdID of pet that needs to be fetchedResponsesStatus CodeTypeDescriptionSamples200Ordersuccessful operation400Invalid ID supplied404Order not foundGET /store/order/{orderId}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getOrderById.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetOrderById%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8275,7 +8293,7 @@ }, { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 361.24969 @@ -8285,8 +8303,8 @@ ] }, { - "Number": 108, - "Text": "108 / 125| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5userOperations about userCreateUserCreate userThis can only be done by the logged in user.RequestParametersNameTypeDefaultNotes*bodyUserCreated user objectResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationCreateUsersWithArrayInputCreates list of users with given input arrayRequestParametersNameTypeDefaultNotes*bodyUser[]List of user objectResponsesPOST /userPOST /user/createWithArray", + "Number": 111, + "Text": "111 / 128| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5userOperations about userCreateUserCreate userThis can only be done by the logged in user.RequestParametersNameTypeDefaultNotes*bodyUserCreated user objectResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationCreateUsersWithArrayInputCreates list of users with given input arrayRequestParametersNameTypeDefaultNotes*bodyUser[]List of user objectResponsesPOST /userPOST /user/createWithArray", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUser%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8326,7 +8344,7 @@ }, { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 92.749695 @@ -8335,7 +8353,7 @@ }, { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 92.749695 @@ -8345,8 +8363,8 @@ ] }, { - "Number": 109, - "Text": "109 / 125| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamplesdefaultsuccessful operationCreateUsersWithListInputCreates list of users with given input arrayRequestParametersNameTypeDefaultNotes*bodyUser[]List of user objectResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationLoginUserLogs user into the systemRequestParametersNameTypeDefaultNotes*usernameThe user name for login*passwordThe password for login in clear textPOST /user/createWithListGET /user/login?username&password", + "Number": 112, + "Text": "112 / 128| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamplesdefaultsuccessful operationCreateUsersWithListInputCreates list of users with given input arrayRequestParametersNameTypeDefaultNotes*bodyUser[]List of user objectResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationLoginUserLogs user into the systemRequestParametersNameTypeDefaultNotes*usernameThe user name for login*passwordThe password for login in clear textPOST /user/createWithListGET /user/login?username&password", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithListInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithListInput%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8386,7 +8404,7 @@ }, { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 92.749695 @@ -8396,8 +8414,8 @@ ] }, { - "Number": 110, - "Text": "110 / 125| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5ResponsesStatus CodeTypeDescriptionSamples200stringsuccessful operation400Invalid username/password suppliedLogoutUserLogs out current logged in user sessionRequestResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationDeleteUserDelete userThis can only be done by the logged in user.RequestParametersNameTypeDefaultNotes*usernameThe name that needs to be deletedResponsesGET /user/logoutDELETE /user/{username}", + "Number": 113, + "Text": "113 / 128| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5ResponsesStatus CodeTypeDescriptionSamples200stringsuccessful operation400Invalid username/password suppliedLogoutUserLogs out current logged in user sessionRequestResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationDeleteUserDelete userThis can only be done by the logged in user.RequestParametersNameTypeDefaultNotes*usernameThe name that needs to be deletedResponsesGET /user/logoutDELETE /user/{username}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_logoutUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FlogoutUser%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8438,8 +8456,8 @@ ] }, { - "Number": 111, - "Text": "111 / 125| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples400Invalid username supplied404User not foundGetUserByNameGet user by user nameRequestParametersNameTypeDefaultNotes*usernameThe name that needs to be fetched. Use user1 for testing.ResponsesStatus CodeTypeDescriptionSamples200Usersuccessful operation400Invalid username supplied404User not foundOther APIsUpdateUserUpdated userThis can only be done by the logged in user.RequestGET /user/{username}", + "Number": 114, + "Text": "114 / 128| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples400Invalid username supplied404User not foundGetUserByNameGet user by user nameRequestParametersNameTypeDefaultNotes*usernameThe name that needs to be fetched. Use user1 for testing.ResponsesStatus CodeTypeDescriptionSamples200Usersuccessful operation400Invalid username supplied404User not foundOther APIsUpdateUserUpdated userThis can only be done by the logged in user.RequestGET /user/{username}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getUserByName.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetUserByName%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8479,7 +8497,7 @@ }, { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 92.749695 @@ -8489,12 +8507,12 @@ ] }, { - "Number": 112, - "Text": "112 / 125ParametersNameTypeDefaultNotes*usernamename that need to be updated*bodyUserUpdated user objectResponsesStatus CodeTypeDescriptionSamples400Invalid user supplied404User not foundDefinitionsPetNameTypeNotescategoryCategory[]idinteger (int64)namestringphotoUrlsarraystatusstringpet status in the storetagsTag[]CategoryPUT /user/{username}", + "Number": 115, + "Text": "115 / 128ParametersNameTypeDefaultNotes*usernamename that need to be updated*bodyUserUpdated user objectResponsesStatus CodeTypeDescriptionSamples400Invalid user supplied404User not foundDefinitionsPetNameTypeNotescategoryCategory[]idinteger (int64)namestringphotoUrlsarraystatusstringpet status in the storetagsTag[]CategoryPUT /user/{username}", "Links": [ { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 92.749695 @@ -8503,7 +8521,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 109.999695 @@ -8512,7 +8530,7 @@ }, { "Goto": { - "PageNumber": 113, + "PageNumber": 116, "Coordinates": { "Left": 28, "Top": 658.99969 @@ -8522,17 +8540,17 @@ ] }, { - "Number": 113, - "Text": "113 / 125NameTypeNotesidinteger (int64)namestringTagNameTypeNotesidinteger (int64)namestringApiResponseNameTypeNotescodeinteger (int32)messagestringtypestringOrderNameTypeNotescompletebooleanidinteger (int64)petIdinteger (int64)quantityinteger (int32)shipDatestring (date-time)statusstringOrder StatusUser", + "Number": 116, + "Text": "116 / 128NameTypeNotesidinteger (int64)namestringTagNameTypeNotesidinteger (int64)namestringApiResponseNameTypeNotescodeinteger (int32)messagestringtypestringOrderNameTypeNotescompletebooleanidinteger (int64)petIdinteger (int64)quantityinteger (int32)shipDatestring (date-time)statusstringOrder StatusUser", "Links": [] }, { - "Number": 114, - "Text": "114 / 125NameTypeNotesemailstringfirstNamestringidinteger (int64)lastNamestringpasswordstringphonestringuserStatusinteger (int32)User StatususernamestringSee AlsosSee other REST APIs:Contacts API", + "Number": 117, + "Text": "117 / 128NameTypeNotesemailstringfirstNamestringidinteger (int64)lastNamestringpasswordstringphonestringuserStatusinteger (int32)User StatususernamestringSee AlsosSee other REST APIs:Contacts API", "Links": [ { "Goto": { - "PageNumber": 115, + "PageNumber": 118, "Type": 2, "Coordinates": { "Top": 0 @@ -8542,8 +8560,8 @@ ] }, { - "Number": 115, - "Text": "115 / 125| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5ContactsGet ContactsYou can get a collection of contacts from your tenant.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented as datestrings: '2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. Theresults arereturned intheresponsebody.Mime type: application/jsonGet Contact By IdGet a contact by using the object ID.Required scope: Contacts.Read or Contacts.WriteGET /contacts?api-version{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#dir \"value\": [ { \"odata.type\": \"Microsoft.DirectoryServices.Contac \"objectType\": \"Contact\", \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9 \"deletionTimestamp\": null,", + "Number": 118, + "Text": "118 / 128| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5ContactsGet ContactsYou can get a collection of contacts from your tenant.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented as datestrings: '2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. Theresults arereturned intheresponsebody.Mime type: application/jsonGet Contact By IdGet a contact by using the object ID.Required scope: Contacts.Read or Contacts.WriteGET /contacts?api-version{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#dir \"value\": [ { \"odata.type\": \"Microsoft.DirectoryServices.Contac \"objectType\": \"Contact\", \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9 \"deletionTimestamp\": null,", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contacts.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contacts%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8584,8 +8602,8 @@ ] }, { - "Number": 116, - "Text": "116 / 125| Improve this Doc\uF1C5View Source\uF1C5RequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6Specifies the version of the Graph API to target.Beginning with version 1.5, the api-version stringis represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. Thecontact isreturned intheresponsebody.Mime type: application/jsonUpdate ContactChange a contact's properties.Required scope: Contacts.WriteRequestGET /contacts/{object_id}?api-version{ \"odata.metadata\": \"https://graph.windows.net/graphdir1.onmicrosoft.com/$m \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\", \"deletionTimestamp\": null, \"city\": null, \"companyName\": null,", + "Number": 119, + "Text": "119 / 128| Improve this Doc\uF1C5View Source\uF1C5RequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6Specifies the version of the Graph API to target.Beginning with version 1.5, the api-version stringis represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. Thecontact isreturned intheresponsebody.Mime type: application/jsonUpdate ContactChange a contact's properties.Required scope: Contacts.WriteRequestGET /contacts/{object_id}?api-version{ \"odata.metadata\": \"https://graph.windows.net/graphdir1.onmicrosoft.com/$m \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\", \"deletionTimestamp\": null, \"city\": null, \"companyName\": null,", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_update_contact.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fupdate%20contact%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8608,8 +8626,8 @@ ] }, { - "Number": 117, - "Text": "117 / 125| Improve this Doc\uF1C5View Source\uF1C5ParametersNameTypeDefaultNotes*object_id7163f3b8-70c9-43d2-b9e1-4467ddaf087aThe object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-versionstring is represented in major.minor format.Prior releases were represented as datestrings: '2013-11-08' and '2013-04-05'.Required.bodyparamcontactthis is request body, not real parameterResponsesStatusCodeTypeDescriptionSamples204No Content. Indicates success. No response body isreturned.Delete ContactDelete a contact.Required scope: Contacts.WriteRequestParametersPATCH /contacts/{object_id}?api-versionDELETE /contacts/{object_id}[?api-version]", + "Number": 120, + "Text": "120 / 128| Improve this Doc\uF1C5View Source\uF1C5ParametersNameTypeDefaultNotes*object_id7163f3b8-70c9-43d2-b9e1-4467ddaf087aThe object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-versionstring is represented in major.minor format.Prior releases were represented as datestrings: '2013-11-08' and '2013-04-05'.Required.bodyparamcontactthis is request body, not real parameterResponsesStatusCodeTypeDescriptionSamples204No Content. Indicates success. No response body isreturned.Delete ContactDelete a contact.Required scope: Contacts.WriteRequestParametersPATCH /contacts/{object_id}?api-versionDELETE /contacts/{object_id}[?api-version]", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_delete_contact.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fdelete%20contact%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8631,7 +8649,7 @@ }, { "Goto": { - "PageNumber": 123, + "PageNumber": 126, "Coordinates": { "Left": 28, "Top": 296.75015 @@ -8641,8 +8659,8 @@ ] }, { - "Number": 118, - "Text": "118 / 125| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*object_id7163f3b8-70c9-43d2-b9e1-4467ddaf087aThe object ID (GUID) of the target contact.api-version1.6Specifies the version of the Graph API to target.Beginning with version 1.5, the api-versionstring is represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.ResponsesStatus CodeTypeDescriptionSamples204No Content. Indicates success.Get Contact Manager LinkGet a link to the contact's manager.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-version stringis represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.GET /contacts/{object_id}/$links/manager?api-version", + "Number": 121, + "Text": "121 / 128| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*object_id7163f3b8-70c9-43d2-b9e1-4467ddaf087aThe object ID (GUID) of the target contact.api-version1.6Specifies the version of the Graph API to target.Beginning with version 1.5, the api-versionstring is represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.ResponsesStatus CodeTypeDescriptionSamples204No Content. Indicates success.Get Contact Manager LinkGet a link to the contact's manager.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-version stringis represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.GET /contacts/{object_id}/$links/manager?api-version", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_manager_link.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20manager%20link%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8665,8 +8683,8 @@ ] }, { - "Number": 119, - "Text": "119 / 125| Improve this Doc\uF1C5View Source\uF1C5ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. Alink to thecontact'smanager isreturned.Mime type: application/json404Not Found.Therequestedresourcewas notfound. Thiscan occur ifthe managerproperty isnot currentlyset for thespecifiedcontact. Itcan alsohave othercauses, forexample, abad domain.A code andassociatedmessage isreturnedwith theerror.Mime type: application/jsonUpdate Contact Manager{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#dir \"url\": \"https://graph.windows.net/myorganization/dire4c4a-93b2-03f065fabd93/Microsoft.WindowsAzure.ActiveDir}{ \"odata.error\": { \"code\": \"Request_ResourceNotFound\", \"message\": { \"lang\": \"en\", \"value\": \"Resource not found for the segment 'man } }}", + "Number": 122, + "Text": "122 / 128| Improve this Doc\uF1C5View Source\uF1C5ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. Alink to thecontact'smanager isreturned.Mime type: application/json404Not Found.Therequestedresourcewas notfound. Thiscan occur ifthe managerproperty isnot currentlyset for thespecifiedcontact. Itcan alsohave othercauses, forexample, abad domain.A code andassociatedmessage isreturnedwith theerror.Mime type: application/jsonUpdate Contact Manager{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#dir \"url\": \"https://graph.windows.net/myorganization/dire4c4a-93b2-03f065fabd93/Microsoft.WindowsAzure.ActiveDir}{ \"odata.error\": { \"code\": \"Request_ResourceNotFound\", \"message\": { \"lang\": \"en\", \"value\": \"Resource not found for the segment 'man } }}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_update_contact_manager.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fupdate%20contact%20manager%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8689,8 +8707,8 @@ ] }, { - "Number": 120, - "Text": "120 / 125| Improve this Doc\uF1C5View Source\uF1C5Update the contact's managerRequired scope: Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-versionstring is represented in major.minor format.Prior releases were represented as datestrings: '2013-11-08' and '2013-04-05'.Required.*bodyparamThe request body contains a single propertythat specifies the URL of the user or contact toadd as manager.ResponsesStatusCodeTypeDescriptionSamples204No Content. Indicates success. No response body isreturned.Delete Contact Manager By IdDelete the contact's manager.Required scope: Contacts.WriteRequestPUT /contacts/{object_id}/$links/manager?api-version", + "Number": 123, + "Text": "123 / 128| Improve this Doc\uF1C5View Source\uF1C5Update the contact's managerRequired scope: Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-versionstring is represented in major.minor format.Prior releases were represented as datestrings: '2013-11-08' and '2013-04-05'.Required.*bodyparamThe request body contains a single propertythat specifies the URL of the user or contact toadd as manager.ResponsesStatusCodeTypeDescriptionSamples204No Content. Indicates success. No response body isreturned.Delete Contact Manager By IdDelete the contact's manager.Required scope: Contacts.WriteRequestPUT /contacts/{object_id}/$links/manager?api-version", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_delete_contact_manager_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fdelete%20contact%20manager%20by%20id%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8713,8 +8731,8 @@ ] }, { - "Number": 121, - "Text": "121 / 125| Improve this Doc\uF1C5View Source\uF1C5ParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-version stringis represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples204No Content. Indicates success. N response body isreturned.Get Contact Direct Reports LinksGet a links to the contact's direct reports.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.DELETE /contacts/{object_id}/$links/manager?api-versionGET /contacts/{object_id}/$links/directReports?api-version", + "Number": 124, + "Text": "124 / 128| Improve this Doc\uF1C5View Source\uF1C5ParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-version stringis represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples204No Content. Indicates success. N response body isreturned.Get Contact Direct Reports LinksGet a links to the contact's direct reports.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.DELETE /contacts/{object_id}/$links/manager?api-versionGET /contacts/{object_id}/$links/directReports?api-version", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_direct_reports_links.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20direct%20reports%20links%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8737,8 +8755,8 @@ ] }, { - "Number": 122, - "Text": "122 / 125| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-version stringis represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess.One or moredirectreports arereturned.Mime type: application/jsonGet Contact MemberOf LinksGet a links to the contact's direct group and directory role memberships.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#dir \"value\": [ { \"url\": \"https://graph.windows.net/myorganization/4e26-b24f-c830606ef41c/Microsoft.DirectoryServices.Cont } ]GET /contacts/{object_id}/$links/memberOf?api-version", + "Number": 125, + "Text": "125 / 128| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-version stringis represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess.One or moredirectreports arereturned.Mime type: application/jsonGet Contact MemberOf LinksGet a links to the contact's direct group and directory role memberships.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#dir \"value\": [ { \"url\": \"https://graph.windows.net/myorganization/4e26-b24f-c830606ef41c/Microsoft.DirectoryServices.Cont } ]GET /contacts/{object_id}/$links/memberOf?api-version", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_memberOf_links.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20memberOf%20links%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8761,17 +8779,17 @@ ] }, { - "Number": 123, - "Text": "123 / 125NameTypeDefaultNotes*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-version stringis represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess.One or moregroupsand/ordirectoryroles arereturned.Mime type: application/jsonDefinitionsContactNameTypeNotesobjectTypestringobjectIdstringdeletionTimestampstring (date-time)citystringcountrystringdepartmentstring{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#dir \"value\": [ { \"url\": \"https://graph.windows.net/myorganization/b942-47c9-a10e-a4bee353ce60/Microsoft.DirectoryServices } ]", + "Number": 126, + "Text": "126 / 128NameTypeDefaultNotes*api-version1.6The version of the Graph API to target.Beginning with version 1.5, the api-version stringis represented in major.minor format. Priorreleases were represented as date strings:'2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess.One or moregroupsand/ordirectoryroles arereturned.Mime type: application/jsonDefinitionsContactNameTypeNotesobjectTypestringobjectIdstringdeletionTimestampstring (date-time)citystringcountrystringdepartmentstring{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#dir \"value\": [ { \"url\": \"https://graph.windows.net/myorganization/b942-47c9-a10e-a4bee353ce60/Microsoft.DirectoryServices } ]", "Links": [] }, { - "Number": 124, - "Text": "124 / 125NameTypeNotesdirSyncEnabledbooleandisplayNamestringfacsimileTelephoneNumberstringgivenNamestringjobTitlestringlastDirSyncTimestring (date-time)mailstringmailNicknamestringmobilestringphysicalDeliveryOfficeNamestringpostalCodestringprovisioningErrorsProvisioningError[]proxyAddressesarraysipProxyAddressstringstatestringstreetAddressstringsurnamestringtelephoneNumberstringthumbnailPhotostringProvisioningErrorNameTypeNoteserrorDetailstring", + "Number": 127, + "Text": "127 / 128NameTypeNotesdirSyncEnabledbooleandisplayNamestringfacsimileTelephoneNumberstringgivenNamestringjobTitlestringlastDirSyncTimestring (date-time)mailstringmailNicknamestringmobilestringphysicalDeliveryOfficeNamestringpostalCodestringprovisioningErrorsProvisioningError[]proxyAddressesarraysipProxyAddressstringstatestringstreetAddressstringsurnamestringtelephoneNumberstringthumbnailPhotostringProvisioningErrorNameTypeNoteserrorDetailstring", "Links": [ { "Goto": { - "PageNumber": 124, + "PageNumber": 127, "Coordinates": { "Left": 28, "Top": 136.250183 @@ -8780,7 +8798,7 @@ }, { "Goto": { - "PageNumber": 124, + "PageNumber": 127, "Coordinates": { "Left": 28, "Top": 136.250183 @@ -8790,8 +8808,8 @@ ] }, { - "Number": 125, - "Text": "125 / 125NameTypeNotesresolvedbooleanserviceInstancestringtimestampstring (date-time)", + "Number": 128, + "Text": "128 / 128NameTypeNotesresolvedbooleanserviceInstancestringtimestampstring (date-time)", "Links": [] } ], @@ -9241,7 +9259,7 @@ "Title": "ContainersRefType", "Children": [], "Destination": { - "PageNumber": 67, + "PageNumber": 68, "Type": 2, "Coordinates": { "Top": 0 @@ -9252,7 +9270,7 @@ "Title": "ContainersRefType.ColorType", "Children": [], "Destination": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -9263,7 +9281,7 @@ "Title": "ContainersRefType.ContainersRefTypeChild", "Children": [], "Destination": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -9274,7 +9292,7 @@ "Title": "ContainersRefType.ContainersRefTypeChildInterface", "Children": [], "Destination": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -9285,7 +9303,7 @@ "Title": "ContainersRefType.ContainersRefTypeDelegate", "Children": [], "Destination": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -9296,7 +9314,7 @@ "Title": "ExplicitLayoutClass", "Children": [], "Destination": { - "PageNumber": 73, + "PageNumber": 75, "Type": 2, "Coordinates": { "Top": 0 @@ -9307,7 +9325,7 @@ "Title": "Issue231", "Children": [], "Destination": { - "PageNumber": 74, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -9316,7 +9334,7 @@ } ], "Destination": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -9327,7 +9345,7 @@ "Title": "CatException", "Children": [], "Destination": { - "PageNumber": 75, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -9338,7 +9356,7 @@ "Title": "Cat", "Children": [], "Destination": { - "PageNumber": 76, + "PageNumber": 78, "Type": 2, "Coordinates": { "Top": 0 @@ -9349,7 +9367,7 @@ "Title": "Complex", "Children": [], "Destination": { - "PageNumber": 85, + "PageNumber": 88, "Type": 2, "Coordinates": { "Top": 0 @@ -9360,7 +9378,7 @@ "Title": "FakeDelegate", "Children": [], "Destination": { - "PageNumber": 86, + "PageNumber": 89, "Type": 2, "Coordinates": { "Top": 0 @@ -9371,7 +9389,7 @@ "Title": "IAnimal", "Children": [], "Destination": { - "PageNumber": 87, + "PageNumber": 90, "Type": 2, "Coordinates": { "Top": 0 @@ -9382,7 +9400,7 @@ "Title": "ICat", "Children": [], "Destination": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -9393,7 +9411,7 @@ "Title": "ICatExtension", "Children": [], "Destination": { - "PageNumber": 91, + "PageNumber": 94, "Type": 2, "Coordinates": { "Top": 0 @@ -9404,7 +9422,7 @@ "Title": "MRefDelegate", "Children": [], "Destination": { - "PageNumber": 93, + "PageNumber": 96, "Type": 2, "Coordinates": { "Top": 0 @@ -9415,7 +9433,7 @@ "Title": "MRefNormalDelegate", "Children": [], "Destination": { - "PageNumber": 94, + "PageNumber": 97, "Type": 2, "Coordinates": { "Top": 0 @@ -9426,7 +9444,7 @@ "Title": "Tom", "Children": [], "Destination": { - "PageNumber": 95, + "PageNumber": 98, "Type": 2, "Coordinates": { "Top": 0 @@ -9437,7 +9455,7 @@ "Title": "TomFromBaseClass", "Children": [], "Destination": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -9446,7 +9464,7 @@ } ], "Destination": { - "PageNumber": 64, + "PageNumber": 65, "Type": 2, "Coordinates": { "Top": 0 @@ -9460,7 +9478,7 @@ "Title": "ColorType", "Children": [], "Destination": { - "PageNumber": 99, + "PageNumber": 102, "Type": 2, "Coordinates": { "Top": 0 @@ -9469,7 +9487,7 @@ } ], "Destination": { - "PageNumber": 98, + "PageNumber": 101, "Type": 2, "Coordinates": { "Top": 0 @@ -9492,7 +9510,7 @@ "Title": "Pet Store API", "Children": [], "Destination": { - "PageNumber": 100, + "PageNumber": 103, "Type": 2, "Coordinates": { "Top": 0 @@ -9503,7 +9521,7 @@ "Title": "Contacts API", "Children": [], "Destination": { - "PageNumber": 115, + "PageNumber": 118, "Type": 2, "Coordinates": { "Top": 0 @@ -9512,7 +9530,7 @@ } ], "Destination": { - "PageNumber": 100, + "PageNumber": 103, "Type": 2, "Coordinates": { "Top": 0 diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromAssembly.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromAssembly.Class1.html.view.verified.json index 5c3229aaa7c..8024d36dd78 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromAssembly.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromAssembly.Class1.html.view.verified.json @@ -847,6 +847,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "This is a test class.", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json index 185c34683f8..f2d52a3dbf0 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json @@ -1144,6 +1144,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "This is a test class to have something for DocFX to document.", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromProject.Issue8725.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromProject.Issue8725.html.view.verified.json index 176e064a82c..cdb7c928baf 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromProject.Issue8725.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromProject.Issue8725.html.view.verified.json @@ -904,6 +904,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "A nice class", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json index de352c86a1a..331c4d29fc2 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json @@ -911,6 +911,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "This is the BaseClass", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromVBSourceCode.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromVBSourceCode.Class1.html.view.verified.json index 3f8ed9c4e50..3579751c6b8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromVBSourceCode.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/BuildFromVBSourceCode.Class1.html.view.verified.json @@ -1513,6 +1513,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "This is summary from vb class...", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Cat-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Cat-2.html.view.verified.json index 9864cfb34bd..5885154f9e9 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Cat-2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Cat-2.html.view.verified.json @@ -4296,6 +4296,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json index 1023ba47453..559e9ddba16 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json @@ -597,6 +597,7 @@ "hideSubtitle": false, "isClass": false, "inEnum": true, + "description": "Enumeration ColorType", "isEnum": true, "_disableToc": false, "_disableNextArticle": true diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json index 52740afd09d..c2f8a858446 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json @@ -187,6 +187,7 @@ "hideSubtitle": false, "isClass": true, "inDelegate": true, + "description": "Delegate ContainersRefTypeDelegate", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.html.view.verified.json index 4af3a419dcf..a6183d78ade 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Core.ContainersRefType.html.view.verified.json @@ -1284,6 +1284,7 @@ "hideSubtitle": false, "isClass": true, "inStruct": true, + "description": "Struct ContainersRefType", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.FakeDelegate-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.FakeDelegate-1.html.view.verified.json index 336cd14ee69..44bb35fa372 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.FakeDelegate-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.FakeDelegate-1.html.view.verified.json @@ -382,6 +382,7 @@ "hideSubtitle": false, "isClass": true, "inDelegate": true, + "description": "Fake delegate", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.IAnimal.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.IAnimal.html.view.verified.json index 09451d45991..90ac3d5d5e3 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.IAnimal.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.IAnimal.html.view.verified.json @@ -1120,6 +1120,7 @@ "hideSubtitle": false, "isClass": true, "inInterface": true, + "description": "This is basic interface of all animal.", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.ICat.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.ICat.html.view.verified.json index bcfe715d9dd..00a4c2e8143 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.ICat.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.ICat.html.view.verified.json @@ -686,6 +686,7 @@ "hideSubtitle": false, "isClass": true, "inInterface": true, + "description": "Cat's interface", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.ICatExtension.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.ICatExtension.html.view.verified.json index 0fb7fe57519..58f60738ee0 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.ICatExtension.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.ICatExtension.html.view.verified.json @@ -1048,6 +1048,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "It's the class that contains ICat interface's extension method. This class must be public and static. Also it shouldn't be a geneic class", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.MRefDelegate-3.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.MRefDelegate-3.html.view.verified.json index 9d3b7bef788..25f39dedda1 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.MRefDelegate-3.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.MRefDelegate-3.html.view.verified.json @@ -347,6 +347,7 @@ "hideSubtitle": false, "isClass": true, "inDelegate": true, + "description": "Generic delegate with many constrains.", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.MRefNormalDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.MRefNormalDelegate.html.view.verified.json index 614975fa874..707d3c35874 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.MRefNormalDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.MRefNormalDelegate.html.view.verified.json @@ -284,6 +284,7 @@ "hideSubtitle": false, "isClass": true, "inDelegate": true, + "description": "Delegate in the namespace", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Tom.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Tom.html.view.verified.json index d6c67f1aade..1985c398c36 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Tom.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.Tom.html.view.verified.json @@ -1027,6 +1027,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "Tom class is only inherit from Object. Not any member inside itself.", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.TomFromBaseClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.TomFromBaseClass.html.view.verified.json index 8e306be73e8..3fc5acf89a7 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.TomFromBaseClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/CatLibrary.TomFromBaseClass.html.view.verified.json @@ -874,6 +874,7 @@ "hideSubtitle": false, "isClass": true, "inClass": true, + "description": "TomFromBaseClass inherits from @", "_disableToc": false, "_disableNextArticle": true } \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json index 93f0abba416..dafd9265c1f 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json @@ -645,6 +645,7 @@ "hideSubtitle": false, "isClass": false, "inEnum": true, + "description": "Enumeration ColorType", "isEnum": true, "_disableToc": false, "_disableNextArticle": true diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/toc.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/toc.pdf.verified.json index 945ede582e9..43a24c6c7e6 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/toc.pdf.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/api/toc.pdf.verified.json @@ -1,9 +1,9 @@ { - "NumberOfPages": 82, + "NumberOfPages": 85, "Pages": [ { "Number": 1, - "Text": "Table of ContentsBuildFromAssembly3Class14Issue54325BuildFromCSharpSourceCode6CSharp7BuildFromProject8Issue854010A11A12B13B14Class115Class1.IIssue894820Class1.Issue866521Class1.Issue8696Attribute24Class1.Issue894826Class1.Issue926027Class1.Test28IInheritdoc29Inheritdoc30Inheritdoc.Issue636632Inheritdoc.Issue6366.Class133Inheritdoc.Issue6366.Class235Inheritdoc.Issue703536Inheritdoc.Issue748437Inheritdoc.Issue810139Inheritdoc.Issue812941Issue872542BuildFromVBSourceCode43BaseClass144Class145CatLibrary47Core49ContainersRefType50ContainersRefType.ColorType52ContainersRefType.ContainersRefTypeChild53ContainersRefType.ContainersRefTypeChildInterface54ContainersRefType.ContainersRefTypeDelegate55", + "Text": "Table of ContentsBuildFromAssembly3Class14Issue54325BuildFromCSharpSourceCode6CSharp7BuildFromProject8Issue854010A11A12B13B14Class115Class1.IIssue894820Class1.Issue866521Class1.Issue8696Attribute24Class1.Issue894826Class1.Issue926027Class1.Test28IInheritdoc29Inheritdoc30Inheritdoc.Issue636632Inheritdoc.Issue6366.Class133Inheritdoc.Issue6366.Class235Inheritdoc.Issue703536Inheritdoc.Issue748437Inheritdoc.Issue810139Inheritdoc.Issue812941Issue872542BuildFromVBSourceCode43BaseClass144Class145CatLibrary48Core50ContainersRefType51ContainersRefType.ColorType54ContainersRefType.ContainersRefTypeChild55ContainersRefType.ContainersRefTypeChildInterface56ContainersRefType.ContainersRefTypeDelegate57", "Links": [ { "Goto": { @@ -286,7 +286,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -295,7 +295,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -304,7 +304,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -313,7 +313,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -322,7 +322,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -331,7 +331,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -340,7 +340,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -351,11 +351,11 @@ }, { "Number": 2, - "Text": "ExplicitLayoutClass56Issue23157CatException58Cat59Complex68FakeDelegate69IAnimal70ICat73ICatExtension74MRefDelegate76MRefNormalDelegate77Tom78TomFromBaseClass80MRef.Demo.Enumeration81ColorType82", + "Text": "ExplicitLayoutClass58Issue23159CatException60Cat61Complex71FakeDelegate72IAnimal73ICat76ICatExtension77MRefDelegate79MRefNormalDelegate80Tom81TomFromBaseClass83MRef.Demo.Enumeration84ColorType85", "Links": [ { "Goto": { - "PageNumber": 56, + "PageNumber": 58, "Type": 2, "Coordinates": { "Top": 0 @@ -364,7 +364,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Type": 2, "Coordinates": { "Top": 0 @@ -373,7 +373,7 @@ }, { "Goto": { - "PageNumber": 58, + "PageNumber": 60, "Type": 2, "Coordinates": { "Top": 0 @@ -382,7 +382,7 @@ }, { "Goto": { - "PageNumber": 59, + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 @@ -391,7 +391,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -400,7 +400,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -409,7 +409,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -418,7 +418,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -427,7 +427,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -436,7 +436,7 @@ }, { "Goto": { - "PageNumber": 76, + "PageNumber": 79, "Type": 2, "Coordinates": { "Top": 0 @@ -445,7 +445,7 @@ }, { "Goto": { - "PageNumber": 77, + "PageNumber": 80, "Type": 2, "Coordinates": { "Top": 0 @@ -454,7 +454,7 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, "Type": 2, "Coordinates": { "Top": 0 @@ -463,7 +463,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -472,7 +472,7 @@ }, { "Goto": { - "PageNumber": 81, + "PageNumber": 84, "Type": 2, "Coordinates": { "Top": 0 @@ -481,7 +481,7 @@ }, { "Goto": { - "PageNumber": 82, + "PageNumber": 85, "Type": 2, "Coordinates": { "Top": 0 @@ -492,7 +492,7 @@ }, { "Number": 3, - "Text": "3 / 82ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", + "Text": "3 / 85ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", "Links": [ { "Goto": { @@ -516,7 +516,7 @@ }, { "Number": 4, - "Text": "4 / 82Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllThis is a test class.Inheritanceobject\uF1C5 Class1Inherited Membersobject.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ToString()\uF1C5 , object.Equals(object)\uF1C5 ,object.Equals(object, object)\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.GetHashCode()\uF1C5ConstructorsMethodsHello World.Class Class1public class Class1\uF12CClass1()public Class1()HelloWorld()public static void HelloWorld()", + "Text": "4 / 85Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllThis is a test class.Inheritanceobject\uF1C5 Class1Inherited Membersobject.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ToString()\uF1C5 , object.Equals(object)\uF1C5 ,object.Equals(object, object)\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.GetHashCode()\uF1C5ConstructorsMethodsHello World.Class Class1public class Class1\uF12CClass1()public Class1()HelloWorld()public static void HelloWorld()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -621,7 +621,7 @@ }, { "Number": 5, - "Text": "5 / 82Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 , object.GetType()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.ReferenceEquals(object, object)\uF1C5PropertiesProperty Valuestring\uF1C5Struct Issue5432public struct Issue5432Namepublic string Name { get; }", + "Text": "5 / 85Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 , object.GetType()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.ReferenceEquals(object, object)\uF1C5PropertiesProperty Valuestring\uF1C5Struct Issue5432public struct Issue5432Namepublic string Name { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -717,7 +717,7 @@ }, { "Number": 6, - "Text": "6 / 82ClassesCSharpNamespace BuildFromCSharpSourceCode", + "Text": "6 / 85ClassesCSharpNamespace BuildFromCSharpSourceCode", "Links": [ { "Goto": { @@ -732,7 +732,7 @@ }, { "Number": 7, - "Text": "7 / 82Namespace:BuildFromCSharpSourceCodeInheritanceobject\uF1C5 CSharpInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParametersargs string\uF1C5[]Class CSharppublic class CSharp\uF12CMain(string[])public static void Main(string[] args)", + "Text": "7 / 85Namespace:BuildFromCSharpSourceCodeInheritanceobject\uF1C5 CSharpInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParametersargs string\uF1C5[]Class CSharppublic class CSharp\uF12CMain(string[])public static void Main(string[] args)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -864,7 +864,7 @@ }, { "Number": 8, - "Text": "8 / 82NamespacesBuildFromProject.Issue8540ClassesClass1Class1.Issue8665Class1.Issue8696AttributeClass1.Issue8948Class1.TestInheritdocInheritdoc.Issue6366Inheritdoc.Issue6366.Class1Inheritdoc.Issue6366.Class2Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Issue8725A nice classStructsInheritdoc.Issue8129InterfacesClass1.IIssue8948IInheritdocEnumsNamespace BuildFromProject", + "Text": "8 / 85NamespacesBuildFromProject.Issue8540ClassesClass1Class1.Issue8665Class1.Issue8696AttributeClass1.Issue8948Class1.TestInheritdocInheritdoc.Issue6366Inheritdoc.Issue6366.Class1Inheritdoc.Issue6366.Class2Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Issue8725A nice classStructsInheritdoc.Issue8129InterfacesClass1.IIssue8948IInheritdocEnumsNamespace BuildFromProject", "Links": [ { "Goto": { @@ -1158,7 +1158,7 @@ }, { "Number": 9, - "Text": "9 / 82Class1.Issue9260", + "Text": "9 / 85Class1.Issue9260", "Links": [ { "Goto": { @@ -1182,7 +1182,7 @@ }, { "Number": 10, - "Text": "10 / 82NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", + "Text": "10 / 85NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", "Links": [ { "Goto": { @@ -1278,7 +1278,7 @@ }, { "Number": 11, - "Text": "11 / 82ClassesANamespace BuildFromProject.Issue8540.A", + "Text": "11 / 85ClassesANamespace BuildFromProject.Issue8540.A", "Links": [ { "Goto": { @@ -1293,7 +1293,7 @@ }, { "Number": 12, - "Text": "12 / 82Namespace:BuildFromProject.Issue8540.AAssembly:BuildFromProject.dllInheritanceobject\uF1C5 AInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Apublic class A\uF12C", + "Text": "12 / 85Namespace:BuildFromProject.Issue8540.AAssembly:BuildFromProject.dllInheritanceobject\uF1C5 AInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Apublic class A\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1416,7 +1416,7 @@ }, { "Number": 13, - "Text": "13 / 82ClassesBNamespace BuildFromProject.Issue8540.B", + "Text": "13 / 85ClassesBNamespace BuildFromProject.Issue8540.B", "Links": [ { "Goto": { @@ -1431,7 +1431,7 @@ }, { "Number": 14, - "Text": "14 / 82Namespace:BuildFromProject.Issue8540.BAssembly:BuildFromProject.dllInheritanceobject\uF1C5 BInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Bpublic class B\uF12C", + "Text": "14 / 85Namespace:BuildFromProject.Issue8540.BAssembly:BuildFromProject.dllInheritanceobject\uF1C5 BInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Bpublic class B\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1554,7 +1554,7 @@ }, { "Number": 15, - "Text": "15 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1ImplementsIClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsPricing models are used to calculate theoretical option values1-Black Scholes2-Black763-Black76Fut4-Equity Tree5-Variance Swap6-Dividend ForecastIConfiguration related helper and extension routines.Class Class1public class Class1 : IClass1\uF12CIssue1651()public void Issue1651()Issue1887()", + "Text": "15 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1ImplementsIClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsPricing models are used to calculate theoretical option values1-Black Scholes2-Black763-Black76Fut4-Equity Tree5-Variance Swap6-Dividend ForecastIConfiguration related helper and extension routines.Class Class1public class Class1 : IClass1\uF12CIssue1651()public void Issue1651()Issue1887()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1659,12 +1659,12 @@ }, { "Number": 16, - "Text": "16 / 82ExamplesRemarksFor example:Remarkspublic void Issue1887()Issue2623()public void Issue2623()MyClass myClass = new MyClass();void Update(){ myClass.Execute();}MyClass myClass = new MyClass();void Update(){ myClass.Execute();}Issue2723()public void Issue2723()NOTEThis is a . & \" '\uF431", + "Text": "16 / 85ExamplesRemarksFor example:Remarkspublic void Issue1887()Issue2623()public void Issue2623()MyClass myClass = new MyClass();void Update(){ myClass.Execute();}MyClass myClass = new MyClass();void Update(){ myClass.Execute();}Issue2723()public void Issue2723()NOTEThis is a . & \" '\uF431", "Links": [] }, { "Number": 17, - "Text": "17 / 82Inline .link\uF1C5ExamplesRemarksfor (var i = 0; i > 10; i++) // & \" 'var range = new Range { Min = 0, Max = 10 };var range = new Range { Min = 0, Max = 10 };Issue4017()public void Issue4017()public void HookMessageDeleted(BaseSocketClient client){ client.MessageDeleted += HandleMessageDelete;}public Task HandleMessageDelete(Cacheable cachedMessage, ISocketMessageChannel channel){ // check if the message exists in cache; if not, we cannot report what was removed if (!cachedMessage.HasValue) return; var message = cachedMessage.Value; Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\" + Environment.NewLine + message.Content); return Task.CompletedTask;}void Update(){ myClass.Execute();}", + "Text": "17 / 85Inline .link\uF1C5ExamplesRemarksfor (var i = 0; i > 10; i++) // & \" 'var range = new Range { Min = 0, Max = 10 };var range = new Range { Min = 0, Max = 10 };Issue4017()public void Issue4017()public void HookMessageDeleted(BaseSocketClient client){ client.MessageDeleted += HandleMessageDelete;}public Task HandleMessageDelete(Cacheable cachedMessage, ISocketMessageChannel channel){ // check if the message exists in cache; if not, we cannot report what was removed if (!cachedMessage.HasValue) return; var message = cachedMessage.Value; Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\" + Environment.NewLine + message.Content); return Task.CompletedTask;}void Update(){ myClass.Execute();}", "Links": [ { "Uri": "https://www.github.com/" @@ -1679,12 +1679,12 @@ }, { "Number": 18, - "Text": "18 / 82Remarks@\"\\\\?\\\" @\"\\\\?\\\"RemarksThere's really no reason to not believe that this class can test things.TermDescriptionA TermA DescriptionBee TermBee DescriptionType ParametersTTestIssue4392()public void Issue4392()Issue7484()public void Issue7484()Issue8764()public void Issue8764() where T : unmanagedIssue896()public void Issue896()", + "Text": "18 / 85Remarks@\"\\\\?\\\" @\"\\\\?\\\"RemarksThere's really no reason to not believe that this class can test things.TermDescriptionA TermA DescriptionBee TermBee DescriptionType ParametersTTestIssue4392()public void Issue4392()Issue7484()public void Issue7484()Issue8764()public void Issue8764() where T : unmanagedIssue896()public void Issue896()", "Links": [] }, { "Number": 19, - "Text": "19 / 82See AlsoClass1.Test, Class1Calculates the determinant of a 3-dimensional matrix:Returns the smallest value:Returnsdouble\uF1C5This method should do something...RemarksThis is remarks.Issue9216()public static double Issue9216()XmlCommentIncludeTag()public void XmlCommentIncludeTag()", + "Text": "19 / 85See AlsoClass1.Test, Class1Calculates the determinant of a 3-dimensional matrix:Returns the smallest value:Returnsdouble\uF1C5This method should do something...RemarksThis is remarks.Issue9216()public static double Issue9216()XmlCommentIncludeTag()public void XmlCommentIncludeTag()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.double" @@ -1726,7 +1726,7 @@ }, { "Number": 20, - "Text": "20 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948public interface Class1.IIssue8948DoNothing()void DoNothing()", + "Text": "20 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948public interface Class1.IIssue8948DoNothing()void DoNothing()", "Links": [ { "Goto": { @@ -1759,7 +1759,7 @@ }, { "Number": 21, - "Text": "21 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8665Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsParametersfoo int\uF1C5ParametersClass Class1.Issue8665public class Class1.Issue8665\uF12CIssue8665()public Issue8665()Issue8665(int)public Issue8665(int foo)Issue8665(int, char)public Issue8665(int foo, char bar)", + "Text": "21 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8665Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsParametersfoo int\uF1C5ParametersClass Class1.Issue8665public class Class1.Issue8665\uF12CIssue8665()public Issue8665()Issue8665(int)public Issue8665(int foo)Issue8665(int, char)public Issue8665(int foo, char bar)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1873,7 +1873,7 @@ }, { "Number": 22, - "Text": "22 / 82foo int\uF1C5bar char\uF1C5Parametersfoo int\uF1C5bar char\uF1C5baz string\uF1C5PropertiesProperty Valuechar\uF1C5Property Valuestring\uF1C5Issue8665(int, char, string)public Issue8665(int foo, char bar, string baz)Barpublic char Bar { get; }Bazpublic string Baz { get; }", + "Text": "22 / 85foo int\uF1C5bar char\uF1C5Parametersfoo int\uF1C5bar char\uF1C5baz string\uF1C5PropertiesProperty Valuechar\uF1C5Property Valuestring\uF1C5Issue8665(int, char, string)public Issue8665(int foo, char bar, string baz)Barpublic char Bar { get; }Bazpublic string Baz { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -1942,7 +1942,7 @@ }, { "Number": 23, - "Text": "23 / 82Property Valueint\uF1C5Foopublic int Foo { get; }", + "Text": "23 / 85Property Valueint\uF1C5Foopublic int Foo { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -1957,7 +1957,7 @@ }, { "Number": 24, - "Text": "24 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Attribute\uF1C5 Class1.Issue8696AttributeInherited MembersAttribute.Equals(object)\uF1C5 , Attribute.GetCustomAttribute(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttribute(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type)\uF1C5 , Attribute.GetCustomAttribute(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(Assembly)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, bool)\uF1C5 , Attribute.GetCustomAttributes(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(MemberInfo)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(Module)\uF1C5 ,Attribute.GetCustomAttributes(Module, bool)\uF1C5 , Attribute.GetCustomAttributes(Module, Type)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(ParameterInfo)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetHashCode()\uF1C5 ,Attribute.IsDefaultAttribute()\uF1C5 , Attribute.IsDefined(Assembly, Type)\uF1C5 ,Attribute.IsDefined(Assembly, Type, bool)\uF1C5 , Attribute.IsDefined(MemberInfo, Type)\uF1C5 ,Attribute.IsDefined(MemberInfo, Type, bool)\uF1C5 , Attribute.IsDefined(Module, Type)\uF1C5 ,Attribute.IsDefined(Module, Type, bool)\uF1C5 , Attribute.IsDefined(ParameterInfo, Type)\uF1C5 ,Attribute.IsDefined(ParameterInfo, Type, bool)\uF1C5 , Attribute.Match(object)\uF1C5 , Attribute.TypeId\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsClass Class1.Issue8696Attributepublic class Class1.Issue8696Attribute : Attribute\uF12C\uF12C", + "Text": "24 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Attribute\uF1C5 Class1.Issue8696AttributeInherited MembersAttribute.Equals(object)\uF1C5 , Attribute.GetCustomAttribute(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttribute(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type)\uF1C5 , Attribute.GetCustomAttribute(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(Assembly)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, bool)\uF1C5 , Attribute.GetCustomAttributes(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(MemberInfo)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(Module)\uF1C5 ,Attribute.GetCustomAttributes(Module, bool)\uF1C5 , Attribute.GetCustomAttributes(Module, Type)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(ParameterInfo)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetHashCode()\uF1C5 ,Attribute.IsDefaultAttribute()\uF1C5 , Attribute.IsDefined(Assembly, Type)\uF1C5 ,Attribute.IsDefined(Assembly, Type, bool)\uF1C5 , Attribute.IsDefined(MemberInfo, Type)\uF1C5 ,Attribute.IsDefined(MemberInfo, Type, bool)\uF1C5 , Attribute.IsDefined(Module, Type)\uF1C5 ,Attribute.IsDefined(Module, Type, bool)\uF1C5 , Attribute.IsDefined(ParameterInfo, Type)\uF1C5 ,Attribute.IsDefined(ParameterInfo, Type, bool)\uF1C5 , Attribute.Match(object)\uF1C5 , Attribute.TypeId\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsClass Class1.Issue8696Attributepublic class Class1.Issue8696Attribute : Attribute\uF12C\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2386,7 +2386,7 @@ }, { "Number": 25, - "Text": "25 / 82Parametersdescription string\uF1C5boundsMin int\uF1C5boundsMax int\uF1C5validGameModes string\uF1C5[]hasMultipleSelections bool\uF1C5enumType Type\uF1C5Issue8696Attribute(string?, int, int, string[]?, bool, Type?)[Class1.Issue8696(\"Changes the name of the server in the server list\", 0, 0, null, false, null)]public Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)", + "Text": "25 / 85Parametersdescription string\uF1C5boundsMin int\uF1C5boundsMax int\uF1C5validGameModes string\uF1C5[]hasMultipleSelections bool\uF1C5enumType Type\uF1C5Issue8696Attribute(string?, int, int, string[]?, bool, Type?)[Class1.Issue8696(\"Changes the name of the server in the server list\", 0, 0, null, false, null)]public Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -2446,7 +2446,7 @@ }, { "Number": 26, - "Text": "26 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8948ImplementsClass1.IIssue8948Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsDoes nothing with generic type T.Type ParametersTA generic type.Class Class1.Issue8948public class Class1.Issue8948 : Class1.IIssue8948\uF12CDoNothing()public void DoNothing()", + "Text": "26 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8948ImplementsClass1.IIssue8948Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsDoes nothing with generic type T.Type ParametersTA generic type.Class Class1.Issue8948public class Class1.Issue8948 : Class1.IIssue8948\uF12CDoNothing()public void DoNothing()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2569,7 +2569,7 @@ }, { "Number": 27, - "Text": "27 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllFieldsValue = 0This is a regular enum value.[Obsolete] OldAndUnusedValue = 1This is old and unused. You shouldn't use it anymore.[Obsolete(\"Use Value\")] OldAndUnusedValue2 = 2This is old and unused. You shouldn't use it anymore.Enum Class1.Issue9260public enum Class1.Issue9260", + "Text": "27 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllFieldsValue = 0This is a regular enum value.[Obsolete] OldAndUnusedValue = 1This is old and unused. You shouldn't use it anymore.[Obsolete(\"Use Value\")] OldAndUnusedValue2 = 2This is old and unused. You shouldn't use it anymore.Enum Class1.Issue9260public enum Class1.Issue9260", "Links": [ { "Goto": { @@ -2602,7 +2602,7 @@ }, { "Number": 28, - "Text": "28 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Class1.TestInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Class1.Testpublic class Class1.Test\uF12C", + "Text": "28 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Class1.TestInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Class1.Testpublic class Class1.Test\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2707,7 +2707,7 @@ }, { "Number": 29, - "Text": "29 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", + "Text": "29 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", "Links": [ { "Goto": { @@ -2740,7 +2740,7 @@ }, { "Number": 30, - "Text": "30 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 InheritdocImplementsIInheritdoc, IDisposable\uF1C5Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsPerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.This method should do something...This method should do something...Class Inheritdocpublic class Inheritdoc : IInheritdoc, IDisposable\uF12CDispose()public void Dispose()Issue7628()public void Issue7628()Issue7629()", + "Text": "30 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 InheritdocImplementsIInheritdoc, IDisposable\uF1C5Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsPerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.This method should do something...This method should do something...Class Inheritdocpublic class Inheritdoc : IInheritdoc, IDisposable\uF12CDispose()public void Dispose()Issue7628()public void Issue7628()Issue7629()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2863,12 +2863,12 @@ }, { "Number": 31, - "Text": "31 / 82public void Issue7629()", + "Text": "31 / 85public void Issue7629()", "Links": [] }, { "Number": 32, - "Text": "32 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Inheritdoc.Issue6366public class Inheritdoc.Issue6366\uF12C", + "Text": "32 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Inheritdoc.Issue6366public class Inheritdoc.Issue6366\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2973,7 +2973,7 @@ }, { "Number": 33, - "Text": "33 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1DerivedInheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 TThis text NOT inherited.parm2 int\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class1public abstract class Inheritdoc.Issue6366.Class1\uF12CTestMethod1(T, int)public abstract T TestMethod1(T parm1, int parm2)", + "Text": "33 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1DerivedInheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 TThis text NOT inherited.parm2 int\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class1public abstract class Inheritdoc.Issue6366.Class1\uF12CTestMethod1(T, int)public abstract T TestMethod1(T parm1, int parm2)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3114,12 +3114,12 @@ }, { "Number": 34, - "Text": "34 / 82ReturnsTThis text inherited.", + "Text": "34 / 85ReturnsTThis text inherited.", "Links": [] }, { "Number": 35, - "Text": "35 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 bool\uF1C5This text NOT inherited.parm2 int\uF1C5This text inherited.Returnsbool\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class2public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1\uF12C\uF12CTestMethod1(bool, int)public override bool TestMethod1(bool parm1, int parm2)", + "Text": "35 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 bool\uF1C5This text NOT inherited.parm2 int\uF1C5This text inherited.Returnsbool\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class2public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1\uF12C\uF12CTestMethod1(bool, int)public override bool TestMethod1(bool parm1, int parm2)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3287,7 +3287,7 @@ }, { "Number": 36, - "Text": "36 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue7035Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsClass Inheritdoc.Issue7035public class Inheritdoc.Issue7035\uF12CA()public void A()B()public void B()", + "Text": "36 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue7035Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsClass Inheritdoc.Issue7035public class Inheritdoc.Issue7035\uF12CA()public void A()B()public void B()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3392,7 +3392,7 @@ }, { "Number": 37, - "Text": "37 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllThis is a test class to have something for DocFX to document.Inheritanceobject\uF1C5 Inheritdoc.Issue7484Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5RemarksWe're going to talk about things now.BoolReturningMethod(bool)Simple method to generate docs for.DoDadA string that could have something.ConstructorsThis is a constructor to document.PropertiesA string that could have something.Class Inheritdoc.Issue7484public class Inheritdoc.Issue7484\uF12CIssue7484()public Issue7484()DoDad", + "Text": "37 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllThis is a test class to have something for DocFX to document.Inheritanceobject\uF1C5 Inheritdoc.Issue7484Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5RemarksWe're going to talk about things now.BoolReturningMethod(bool)Simple method to generate docs for.DoDadA string that could have something.ConstructorsThis is a constructor to document.PropertiesA string that could have something.Class Inheritdoc.Issue7484public class Inheritdoc.Issue7484\uF12CIssue7484()public Issue7484()DoDad", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3498,7 +3498,7 @@ "PageNumber": 38, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, @@ -3507,7 +3507,7 @@ "PageNumber": 38, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, @@ -3516,7 +3516,7 @@ "PageNumber": 38, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, @@ -3542,7 +3542,7 @@ }, { "Number": 38, - "Text": "38 / 82Property Valuestring\uF1C5MethodsSimple method to generate docs for.Parameterssource bool\uF1C5A meaningless boolean value, much like most questions in the world.Returnsbool\uF1C5An exactly equivalently meaningless boolean value, much like most answers in the world.RemarksI'd like to take a moment to thank all of those who helped me get to a place where I can writedocumentation like this.public string DoDad { get; }BoolReturningMethod(bool)public bool BoolReturningMethod(bool source)", + "Text": "38 / 85Property Valuestring\uF1C5This is a test class to have something for DocFX to document.MethodsSimple method to generate docs for.Parameterssource bool\uF1C5A meaningless boolean value, much like most questions in the world.Returnsbool\uF1C5An exactly equivalently meaningless boolean value, much like most answers in the world.RemarksI'd like to take a moment to thank all of those who helped me get to a place where I can writedocumentation like this.public string DoDad { get; }BoolReturningMethod(bool)public bool BoolReturningMethod(bool source)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -3575,7 +3575,7 @@ }, { "Number": 39, - "Text": "39 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue8101Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsCreate a new tween.Parametersfrom int\uF1C5The starting value.to int\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5A callback that will be invoked every time the tween value changes.Class Inheritdoc.Issue8101public class Inheritdoc.Issue8101\uF12CTween(int, int, float, Action)public static object Tween(int from, int to, float duration, Action onChange)", + "Text": "39 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue8101Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsCreate a new tween.Parametersfrom int\uF1C5The starting value.to int\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5A callback that will be invoked every time the tween value changes.Class Inheritdoc.Issue8101public class Inheritdoc.Issue8101\uF12CTween(int, int, float, Action)public static object Tween(int from, int to, float duration, Action onChange)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3725,7 +3725,7 @@ }, { "Number": 40, - "Text": "40 / 82Returnsobject\uF1C5The newly created tween instance.Create a new tween.Parametersfrom float\uF1C5The starting value.to float\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Tween(float, float, float, Action)public static object Tween(float from, float to, float duration, Action onChange)", + "Text": "40 / 85Returnsobject\uF1C5The newly created tween instance.Create a new tween.Parametersfrom float\uF1C5The starting value.to float\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Tween(float, float, float, Action)public static object Tween(float from, float to, float duration, Action onChange)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3794,7 +3794,7 @@ }, { "Number": 41, - "Text": "41 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5ConstructorsParametersfoo string\uF1C5Struct Inheritdoc.Issue8129public struct Inheritdoc.Issue8129Issue8129(string)public Issue8129(string foo)", + "Text": "41 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5ConstructorsParametersfoo string\uF1C5Struct Inheritdoc.Issue8129public struct Inheritdoc.Issue8129Issue8129(string)public Issue8129(string foo)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -3890,7 +3890,7 @@ }, { "Number": 42, - "Text": "42 / 82Namespace:BuildFromProjectAssembly:BuildFromProject.dllA nice classInheritanceobject\uF1C5 Issue8725Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsAnother nice operationA nice operationSee AlsoClass1Class Issue8725public class Issue8725\uF12CMoreOperations()public void MoreOperations()MyOperation()public void MyOperation()", + "Text": "42 / 85Namespace:BuildFromProjectAssembly:BuildFromProject.dllA nice classInheritanceobject\uF1C5 Issue8725Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsAnother nice operationA nice operationSee AlsoClass1Class Issue8725public class Issue8725\uF12CMoreOperations()public void MoreOperations()MyOperation()public void MyOperation()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4004,7 +4004,7 @@ }, { "Number": 43, - "Text": "43 / 82ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", + "Text": "43 / 85ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", "Links": [ { "Goto": { @@ -4037,7 +4037,7 @@ }, { "Number": 44, - "Text": "44 / 82Namespace:BuildFromVBSourceCodeThis is the BaseClassInheritanceobject\uF1C5 BaseClass1DerivedClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParameterskeyword Class1ReturnsDateTime\uF1C5Class BaseClass1public abstract class BaseClass1\uF12CWithDeclarationKeyword(Class1)public abstract DateTime WithDeclarationKeyword(Class1 keyword)", + "Text": "44 / 85Namespace:BuildFromVBSourceCodeThis is the BaseClassInheritanceobject\uF1C5 BaseClass1DerivedClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParameterskeyword Class1This is the BaseClassReturnsDateTime\uF1C5This is the BaseClassClass BaseClass1public abstract class BaseClass1\uF12CWithDeclarationKeyword(Class1)public abstract DateTime WithDeclarationKeyword(Class1 keyword)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4187,7 +4187,7 @@ }, { "Number": 45, - "Text": "45 / 82Namespace:BuildFromVBSourceCodeThis is summary from vb class...Inheritanceobject\uF1C5 BaseClass1 Class1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5FieldsThis is a Value typeField ValueClass1PropertiesProperty ValueClass Class1public class Class1 : BaseClass1\uF12C\uF12CValueClasspublic Class1 ValueClassKeyword[Obsolete(\"This member is obsolete.\", true)]public Class1 Keyword { get; }", + "Text": "45 / 85Namespace:BuildFromVBSourceCodeThis is summary from vb class...Inheritanceobject\uF1C5 BaseClass1 Class1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5FieldsThis is a Value typeField ValueClass1This is summary from vb class...PropertiesClass Class1public class Class1 : BaseClass1\uF12C\uF12CValueClasspublic Class1 ValueClassKeyword[Obsolete(\"This member is obsolete.\", true)]public Class1 Keyword { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4337,7 +4337,7 @@ }, { "Number": 46, - "Text": "46 / 82Class1MethodsThis is a FunctionParametersname string\uF1C5Name as the String valueReturnsint\uF1C5Returns AhoooWhat is Sub?Parameterskeyword Class1ReturnsDateTime\uF1C5Value(string)public int Value(string name)WithDeclarationKeyword(Class1)public override DateTime WithDeclarationKeyword(Class1 keyword)", + "Text": "46 / 85Property ValueClass1This is summary from vb class...MethodsThis is a FunctionParametersname string\uF1C5Name as the String valueReturnsint\uF1C5Returns AhoooWhat is Sub?Parameterskeyword Class1This is summary from vb class...ReturnsValue(string)public int Value(string name)WithDeclarationKeyword(Class1)public override DateTime WithDeclarationKeyword(Class1 keyword)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -4357,15 +4357,6 @@ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, { "Goto": { "PageNumber": 45, @@ -4388,11 +4379,26 @@ }, { "Number": 47, - "Text": "47 / 82NamespacesCatLibrary.CoreClassesCatExceptionCatHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see the remarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classComplexICatExtensionIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classTomTom class is only inherit from Object. Not any member inside itself.TomFromBaseClassTomFromBaseClass inherits from @InterfacesIAnimalThis is basic interface of all animal.ICatCat's interfaceDelegatesFakeDelegateFake delegateNamespace CatLibrary", + "Text": "47 / 85DateTime\uF1C5This is summary from vb class...", + "Links": [ + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + } + ] + }, + { + "Number": 48, + "Text": "48 / 85NamespacesCatLibrary.CoreClassesCatExceptionCatHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see the remarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classComplexICatExtensionIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classTomTom class is only inherit from Object. Not any member inside itself.TomFromBaseClassTomFromBaseClass inherits from @InterfacesIAnimalThis is basic interface of all animal.ICatCat's interfaceDelegatesFakeDelegateFake delegateNamespace CatLibrary", "Links": [ { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -4401,7 +4407,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -4410,7 +4416,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -4419,7 +4425,7 @@ }, { "Goto": { - "PageNumber": 58, + "PageNumber": 60, "Type": 2, "Coordinates": { "Top": 0 @@ -4428,7 +4434,7 @@ }, { "Goto": { - "PageNumber": 59, + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 @@ -4437,7 +4443,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -4446,7 +4452,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -4455,7 +4461,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -4464,7 +4470,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -4473,7 +4479,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -4482,7 +4488,7 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, "Type": 2, "Coordinates": { "Top": 0 @@ -4491,7 +4497,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -4500,7 +4506,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -4509,7 +4515,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -4518,7 +4524,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -4527,7 +4533,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -4536,7 +4542,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -4545,7 +4551,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -4555,12 +4561,12 @@ ] }, { - "Number": 48, - "Text": "48 / 82MRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", + "Number": 49, + "Text": "49 / 85MRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", "Links": [ { "Goto": { - "PageNumber": 76, + "PageNumber": 79, "Type": 2, "Coordinates": { "Top": 0 @@ -4569,7 +4575,7 @@ }, { "Goto": { - "PageNumber": 77, + "PageNumber": 80, "Type": 2, "Coordinates": { "Top": 0 @@ -4578,7 +4584,7 @@ }, { "Goto": { - "PageNumber": 77, + "PageNumber": 80, "Type": 2, "Coordinates": { "Top": 0 @@ -4587,7 +4593,7 @@ }, { "Goto": { - "PageNumber": 77, + "PageNumber": 80, "Type": 2, "Coordinates": { "Top": 0 @@ -4597,12 +4603,12 @@ ] }, { - "Number": 49, - "Text": "49 / 82ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", + "Number": 50, + "Text": "50 / 85ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", "Links": [ { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4611,7 +4617,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4620,7 +4626,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4629,7 +4635,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4638,7 +4644,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4647,7 +4653,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4656,7 +4662,7 @@ }, { "Goto": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -4665,7 +4671,7 @@ }, { "Goto": { - "PageNumber": 56, + "PageNumber": 58, "Type": 2, "Coordinates": { "Top": 0 @@ -4674,7 +4680,7 @@ }, { "Goto": { - "PageNumber": 56, + "PageNumber": 58, "Type": 2, "Coordinates": { "Top": 0 @@ -4683,7 +4689,7 @@ }, { "Goto": { - "PageNumber": 56, + "PageNumber": 58, "Type": 2, "Coordinates": { "Top": 0 @@ -4692,7 +4698,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Type": 2, "Coordinates": { "Top": 0 @@ -4701,7 +4707,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -4710,7 +4716,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -4719,7 +4725,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -4728,7 +4734,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4737,7 +4743,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4746,7 +4752,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4755,7 +4761,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4764,7 +4770,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4773,7 +4779,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4782,7 +4788,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4791,7 +4797,7 @@ }, { "Goto": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -4800,7 +4806,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -4809,7 +4815,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -4818,7 +4824,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -4827,7 +4833,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -4836,7 +4842,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -4845,7 +4851,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4854,7 +4860,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4863,7 +4869,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4872,7 +4878,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4881,7 +4887,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4890,7 +4896,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4899,7 +4905,7 @@ }, { "Goto": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -4909,8 +4915,8 @@ ] }, { - "Number": 50, - "Text": "50 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllStruct ContainersRefTypeInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Extension MethodsIssue231.Bar(ContainersRefType) , Issue231.Foo(ContainersRefType)FieldsColorCountField Valuelong\uF1C5PropertiesGetColorCountStruct ContainersRefTypepublic struct ContainersRefTypeColorCountpublic long ColorCountGetColorCountpublic long GetColorCount { get; }", + "Number": 51, + "Text": "51 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllStruct ContainersRefTypeInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Extension MethodsIssue231.Bar(ContainersRefType) , Issue231.Foo(ContainersRefType)FieldsColorCountField Valuelong\uF1C5Struct ContainersRefTypePropertiesGetColorCountStruct ContainersRefTypepublic struct ContainersRefTypeColorCountpublic long ColorCountGetColorCountpublic long GetColorCount { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -4977,7 +4983,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -4986,7 +4992,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -4995,7 +5001,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5004,7 +5010,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 429.5 @@ -5013,7 +5019,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 429.5 @@ -5022,7 +5028,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 429.5 @@ -5031,7 +5037,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 429.5 @@ -5040,7 +5046,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 253.99994 @@ -5049,7 +5055,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 253.99994 @@ -5058,7 +5064,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 253.99994 @@ -5067,7 +5073,7 @@ }, { "Goto": { - "PageNumber": 57, + "PageNumber": 59, "Coordinates": { "Left": 28, "Top": 253.99994 @@ -5077,8 +5083,8 @@ ] }, { - "Number": 51, - "Text": "51 / 82Property Valuelong\uF1C5MethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Returnsint\uF1C5EventsEvent TypeEventHandler\uF1C5ContainersRefTypeNonRefMethod(params object[])public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)ContainersRefTypeEventHandlerpublic event EventHandler ContainersRefTypeEventHandler", + "Number": 52, + "Text": "52 / 85Property Valuelong\uF1C5Struct ContainersRefTypeMethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Struct ContainersRefTypeReturnsint\uF1C5Struct ContainersRefTypeEventsEvent TypeEventHandler\uF1C5Struct ContainersRefTypeContainersRefTypeNonRefMethod(params object[])public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)ContainersRefTypeEventHandlerpublic event EventHandler ContainersRefTypeEventHandler", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -5119,12 +5125,17 @@ ] }, { - "Number": 52, - "Text": "52 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", + "Number": 53, + "Text": "53 / 85", + "Links": [] + }, + { + "Number": 54, + "Text": "54 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", "Links": [ { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5133,7 +5144,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5142,7 +5153,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5152,8 +5163,8 @@ ] }, { - "Number": 53, - "Text": "53 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ContainersRefType.ContainersRefTypeChildInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ClassContainersRefType.ContainersRefTypeChildpublic class ContainersRefType.ContainersRefTypeChild\uF12C", + "Number": 55, + "Text": "55 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ContainersRefType.ContainersRefTypeChildInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ClassContainersRefType.ContainersRefTypeChildpublic class ContainersRefType.ContainersRefTypeChild\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5229,7 +5240,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5238,7 +5249,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5247,7 +5258,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5257,12 +5268,12 @@ ] }, { - "Number": 54, - "Text": "54 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", + "Number": 56, + "Text": "56 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", "Links": [ { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5271,7 +5282,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5280,7 +5291,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5290,12 +5301,12 @@ ] }, { - "Number": 55, - "Text": "55 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", + "Number": 57, + "Text": "57 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", "Links": [ { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5304,7 +5315,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5313,7 +5324,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5323,8 +5334,8 @@ ] }, { - "Number": 56, - "Text": "56 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ExplicitLayoutClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class ExplicitLayoutClasspublic class ExplicitLayoutClass\uF12C", + "Number": 58, + "Text": "58 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ExplicitLayoutClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class ExplicitLayoutClasspublic class ExplicitLayoutClass\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5400,7 +5411,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5409,7 +5420,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5418,7 +5429,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5428,8 +5439,8 @@ ] }, { - "Number": 57, - "Text": "57 / 82Namespace:CatLibrary.CoreAssembly:CatLibrary.dllInheritanceobject\uF1C5 Issue231Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParametersc ContainersRefTypeParametersc ContainersRefTypeClass Issue231public static class Issue231\uF12CBar(ContainersRefType)public static void Bar(this ContainersRefType c)Foo(ContainersRefType)public static void Foo(this ContainersRefType c)", + "Number": 59, + "Text": "59 / 85Namespace:CatLibrary.CoreAssembly:CatLibrary.dllInheritanceobject\uF1C5 Issue231Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParametersc ContainersRefTypeParametersc ContainersRefTypeClass Issue231public static class Issue231\uF12CBar(ContainersRefType)public static void Bar(this ContainersRefType c)Foo(ContainersRefType)public static void Foo(this ContainersRefType c)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5505,7 +5516,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5514,7 +5525,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5523,7 +5534,7 @@ }, { "Goto": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -5532,7 +5543,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5541,7 +5552,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5550,7 +5561,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5559,7 +5570,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5568,7 +5579,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5577,7 +5588,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -5587,8 +5598,8 @@ ] }, { - "Number": 58, - "Text": "58 / 82Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTInheritanceobject\uF1C5 Exception\uF1C5 CatExceptionImplementsISerializable\uF1C5Inherited MembersException.GetBaseException()\uF1C5 , Exception.GetObjectData(SerializationInfo, StreamingContext)\uF1C5 ,Exception.GetType()\uF1C5 , Exception.ToString()\uF1C5 , Exception.Data\uF1C5 , Exception.HelpLink\uF1C5 ,Exception.HResult\uF1C5 , Exception.InnerException\uF1C5 , Exception.Message\uF1C5 , Exception.Source\uF1C5 ,Exception.StackTrace\uF1C5 , Exception.TargetSite\uF1C5 , Exception.SerializeObjectState\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Class CatExceptionpublic class CatException : Exception, ISerializable\uF12C\uF12C", + "Number": 60, + "Text": "60 / 85Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTInheritanceobject\uF1C5 Exception\uF1C5 CatExceptionImplementsISerializable\uF1C5Inherited MembersException.GetBaseException()\uF1C5 , Exception.GetObjectData(SerializationInfo, StreamingContext)\uF1C5 ,Exception.GetType()\uF1C5 , Exception.ToString()\uF1C5 , Exception.Data\uF1C5 , Exception.HelpLink\uF1C5 ,Exception.HResult\uF1C5 , Exception.InnerException\uF1C5 , Exception.Message\uF1C5 , Exception.Source\uF1C5 ,Exception.StackTrace\uF1C5 , Exception.TargetSite\uF1C5 , Exception.SerializeObjectState\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Class CatExceptionpublic class CatException : Exception, ISerializable\uF12C\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5781,7 +5792,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5790,7 +5801,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5800,8 +5811,8 @@ ] }, { - "Number": 59, - "Text": "59 / 82Namespace:CatLibraryAssembly:CatLibrary.dllHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see the remarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classThis is a class talking about CAT\uF1C5.NOTE This is a CAT classRefer to IAnimal to see other animals.Type ParametersTThis type should be class and can new instance.KThis type is a struct type, class type can't be used for this parameter.Inheritanceobject\uF1C5 CatImplementsICat, IAnimalInherited Membersobject.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Cat[Serializable][Obsolete]public class Cat : ICat, IAnimal where T : class, new() where K : struct\uF12C", + "Number": 61, + "Text": "61 / 85Namespace:CatLibraryAssembly:CatLibrary.dllHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see the remarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classThis is a class talking about CAT\uF1C5.NOTE This is a CAT classRefer to IAnimal to see other animals.Type ParametersTThis type should be class and can new instance.KThis type is a struct type, class type can't be used for this parameter.Inheritanceobject\uF1C5 CatImplementsICat, IAnimalInherited Membersobject.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Cat[Serializable][Obsolete]public class Cat : ICat, IAnimal where T : class, new() where K : struct\uF12C", "Links": [ { "Uri": "https://en.wikipedia.org/wiki/Cat" @@ -5877,7 +5888,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5886,7 +5897,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -5895,7 +5906,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -5904,7 +5915,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -5913,7 +5924,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5922,7 +5933,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -5931,7 +5942,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5941,8 +5952,8 @@ ] }, { - "Number": 60, - "Text": "60 / 82Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)ExamplesHere's example of how to create an instance of this class. As T is limited with class and K is limited withstruct.As you see, here we bring in pointer so we need to add unsafe keyword.RemarksTHIS is remarks overridden in MARKDWON fileConstructorsDefault constructor.It's a complex constructor. The parameter will have some attributes.ParametersnickName string\uF1C5var a = new Cat(object, int)();int catNumber = new int();unsafe{ a.GetFeetLength(catNumber);}Cat()public Cat()Cat(string, out int, string, bool)public Cat(string nickName, out int age, string realName, bool isHealthy)", + "Number": 62, + "Text": "62 / 85Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)ExamplesHere's example of how to create an instance of this class. As T is limited with class and K is limited withstruct.As you see, here we bring in pointer so we need to add unsafe keyword.RemarksTHIS is remarks overridden in MARKDWON fileConstructorsDefault constructor.It's a complex constructor. The parameter will have some attributes.ParametersnickName string\uF1C5var a = new Cat(object, int)();int catNumber = new int();unsafe{ a.GetFeetLength(catNumber);}Cat()public Cat()Cat(string, out int, string, bool)public Cat(string nickName, out int age, string realName, bool isHealthy)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -5955,7 +5966,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -5964,7 +5975,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -5973,7 +5984,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -5982,7 +5993,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -5991,7 +6002,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6000,7 +6011,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6009,7 +6020,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6018,7 +6029,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6027,7 +6038,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6036,7 +6047,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6045,7 +6056,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6054,7 +6065,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6064,8 +6075,8 @@ ] }, { - "Number": 61, - "Text": "61 / 82it's string type.age int\uF1C5It's an out and ref parameter.realName string\uF1C5It's an out paramter.isHealthy bool\uF1C5It's an in parameter.Constructor with one generic parameter.ParametersownType TThis parameter type defined by class.FieldsField with attribute.Field Valuebool\uF1C5Cat(T)public Cat(T ownType)isHealthy[ContextStatic][NonSerialized][Obsolete]public bool isHealthy", + "Number": 63, + "Text": "63 / 85it's string type.age int\uF1C5It's an out and ref parameter.realName string\uF1C5It's an out paramter.isHealthy bool\uF1C5It's an in parameter.Constructor with one generic parameter.ParametersownType TThis parameter type defined by class.FieldsField with attribute.Field Valuebool\uF1C5Cat(T)public Cat(T ownType)isHealthy[ContextStatic][NonSerialized][Obsolete]public bool isHealthy", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6106,8 +6117,8 @@ ] }, { - "Number": 62, - "Text": "62 / 82PropertiesHint cat's age.Property Valueint\uF1C5This is index property of Cat. You can see that the visibility is different between get and set method.Parametersa string\uF1C5Cat's name.Property Valueint\uF1C5Cat's number.EII property.Age[Obsolete]protected int Age { get; set; }this[string]public int this[string a] { protected get; set; }Namepublic string Name { get; }", + "Number": 64, + "Text": "64 / 85Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classPropertiesHint cat's age.Property Valueint\uF1C5Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classThis is index property of Cat. You can see that the visibility is different between get and set method.Parametersa string\uF1C5Cat's name.Property Valueint\uF1C5Cat's number.Age[Obsolete]protected int Age { get; set; }this[string]public int this[string a] { protected get; set; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6139,8 +6150,8 @@ ] }, { - "Number": 63, - "Text": "63 / 82Property Valuestring\uF1C5MethodsIt's an overridden summary in markdown formatThis is overriding methods. You can override parameter descriptions for methods, you can even addexceptions to methods. Check the intermediate obj folder to see the data model of the generatedmethod/class. Override Yaml header should follow the data structure.Parametersdate DateTime\uF1C5This is overridden description for a parameter. id must be specified.ReturnsDictionary\uF1C5>It's overridden description for return. type must be specified.ExceptionsArgumentException\uF1C5This is an overridden argument exception. you can add additional exception by adding differentexception type.Override the method of Object.Equals(object obj).Override CalculateFood Namepublic Dictionary> CalculateFood(DateTime date)Equals(object)", + "Number": 65, + "Text": "65 / 85EII property.Property Valuestring\uF1C5Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classMethodsIt's an overridden summary in markdown formatThis is overriding methods. You can override parameter descriptions for methods, you can even addexceptions to methods. Check the intermediate obj folder to see the data model of the generatedmethod/class. Override Yaml header should follow the data structure.Parametersdate DateTime\uF1C5This is overridden description for a parameter. id must be specified.ReturnsDictionary\uF1C5>It's overridden description for return. type must be specified.ExceptionsNamepublic string Name { get; }Override CalculateFood Namepublic Dictionary> CalculateFood(DateTime date)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -6195,7 +6206,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, + } + ] + }, + { + "Number": 66, + "Text": "66 / 85ArgumentException\uF1C5This is an overridden argument exception. you can add additional exception by adding differentexception type.Override the method of Object.Equals(object obj).Parametersobj object\uF1C5Can pass any class type.Returnsbool\uF1C5The return value tell you whehter the compare operation is successful.It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword.ParameterscatName int\uF1C5*Thie represent for cat name length.parameters object\uF1C5[]Optional parameters.Equals(object)public override bool Equals(object obj)GetTailLength(int*, params object[])public long GetTailLength(int* catName, params object[] parameters)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" }, @@ -6204,13 +6221,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - } - ] - }, - { - "Number": 64, - "Text": "64 / 82Parametersobj object\uF1C5Can pass any class type.Returnsbool\uF1C5The return value tell you whehter the compare operation is successful.It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword.ParameterscatName int\uF1C5*Thie represent for cat name length.parameters object\uF1C5[]Optional parameters.Returnslong\uF1C5Return cat tail's length.This method have attribute above it.public override bool Equals(object obj)GetTailLength(int*, params object[])public long GetTailLength(int* catName, params object[] parameters)Jump(T, K, ref bool)", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" }, @@ -6246,7 +6257,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, + } + ] + }, + { + "Number": 67, + "Text": "67 / 85Returnslong\uF1C5Return cat tail's length.This method have attribute above it.ParametersownType TType come from class define.anotherOwnType KType come from class define.cheat bool\uF1C5Hint whether this cat has cheat mode.ExceptionsArgumentException\uF1C5This is an argument exceptionEventsEat event of this catJump(T, K, ref bool)[Conditional(\"Debug\")]public void Jump(T ownType, K anotherOwnType, ref bool cheat)ownEat[Obsolete(\"This _event handler_ is deprecated.\")]", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" }, @@ -6255,13 +6272,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - } - ] - }, - { - "Number": 65, - "Text": "65 / 82ParametersownType TType come from class define.anotherOwnType KType come from class define.cheat bool\uF1C5Hint whether this cat has cheat mode.ExceptionsArgumentException\uF1C5This is an argument exceptionEventsEat event of this catEvent TypeEventHandler\uF1C5Operators[Conditional(\"Debug\")]public void Jump(T ownType, K anotherOwnType, ref bool cheat)ownEat[Obsolete(\"This _event handler_ is deprecated.\")]public event EventHandler ownEatoperator +(Cat, int)", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" }, @@ -6279,7 +6290,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, + } + ] + }, + { + "Number": 68, + "Text": "68 / 85Event TypeEventHandler\uF1C5Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classOperatorsAddition operator of this class.Parameterslsr Cat..rsr int\uF1C5~~Returnsint\uF1C5Result with int type.Expilicit operator of this class.It means this cat can evolve to change to Tom. Tom and Jerry.public event EventHandler ownEatoperator +(Cat, int)public static int operator +(Cat lsr, int rsr)explicit operator Tom(Cat)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" }, @@ -6288,15 +6305,6 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - } - ] - }, - { - "Number": 66, - "Text": "66 / 82Addition operator of this class.Parameterslsr Cat..rsr int\uF1C5~~Returnsint\uF1C5Result with int type.Expilicit operator of this class.It means this cat can evolve to change to Tom. Tom and Jerry.Parameterssrc CatInstance of this class.ReturnsTomAdvanced class type of cat.public static int operator +(Cat lsr, int rsr)explicit operator Tom(Cat)public static explicit operator Tom(Cat src)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6314,26 +6322,11 @@ "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, { - "Goto": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } + "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, { "Goto": { - "PageNumber": 78, + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 @@ -6343,8 +6336,8 @@ ] }, { - "Number": 67, - "Text": "67 / 82Similar with operaotr +, refer to that topic.Parameterslsr Catrsr int\uF1C5Returnsint\uF1C5operator -(Cat, int)public static int operator -(Cat lsr, int rsr)", + "Number": 69, + "Text": "69 / 85Parameterssrc CatInstance of this class.ReturnsTomAdvanced class type of cat.Similar with operaotr +, refer to that topic.Parameterslsr CatHere's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classrsr int\uF1C5Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classReturnsint\uF1C5Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tpublic static explicit operator Tom(Cat src)operator -(Cat, int)public static int operator -(Cat lsr, int rsr)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6366,7 +6359,25 @@ }, { "Goto": { - "PageNumber": 59, + "PageNumber": 61, + "Type": 2, + "Coordinates": { + "Top": 0 + } + } + }, + { + "Goto": { + "PageNumber": 81, + "Type": 2, + "Coordinates": { + "Top": 0 + } + } + }, + { + "Goto": { + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 @@ -6376,8 +6387,13 @@ ] }, { - "Number": 68, - "Text": "68 / 82Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTJInheritanceobject\uF1C5 ComplexInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Complexpublic class Complex\uF12C", + "Number": 70, + "Text": "70 / 85and K. The extension method of this class can refer to class", + "Links": [] + }, + { + "Number": 71, + "Text": "71 / 85Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTJInheritanceobject\uF1C5 ComplexInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Complexpublic class Complex\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -6453,7 +6469,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6462,7 +6478,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6472,8 +6488,8 @@ ] }, { - "Number": 69, - "Text": "69 / 82Namespace:CatLibraryAssembly:CatLibrary.dllFake delegateParametersnum long\uF1C5Fake paraname string\uF1C5Fake parascores object\uF1C5[]Optional Parameter.Returnsint\uF1C5Return a fake number to confuse you.Type ParametersTFake paraDelegate FakeDelegatepublic delegate int FakeDelegate(long num, string name, params object[] scores)", + "Number": 72, + "Text": "72 / 85Namespace:CatLibraryAssembly:CatLibrary.dllFake delegateParametersnum long\uF1C5Fake paraname string\uF1C5Fake parascores object\uF1C5[]Optional Parameter.Returnsint\uF1C5Return a fake number to confuse you.Type ParametersTFake paraDelegate FakeDelegatepublic delegate int FakeDelegate(long num, string name, params object[] scores)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -6513,7 +6529,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6522,7 +6538,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6532,8 +6548,8 @@ ] }, { - "Number": 70, - "Text": "70 / 82Namespace:CatLibraryAssembly:CatLibrary.dllThis is basic interface of all animal.Welcome to the Animal world!RemarksTHIS is remarks overridden in MARKDWON filePropertiesReturn specific number animal's name.Parametersindex int\uF1C5Animal number.Property Valuestring\uF1C5Animal name.Name of Animal.Interface IAnimalpublic interface IAnimalthis[int]string this[int index] { get; }Name", + "Number": 73, + "Text": "73 / 85Namespace:CatLibraryAssembly:CatLibrary.dllThis is basic interface of all animal.Welcome to the Animal world!RemarksTHIS is remarks overridden in MARKDWON filePropertiesReturn specific number animal's name.Parametersindex int\uF1C5Animal number.Property Valuestring\uF1C5Animal name.Name of Animal.Interface IAnimalpublic interface IAnimalthis[int]string this[int index] { get; }Name", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6555,7 +6571,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6564,7 +6580,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6574,8 +6590,8 @@ ] }, { - "Number": 71, - "Text": "71 / 82Property Valuestring\uF1C5MethodsAnimal's eat method.Feed the animal with some foodParametersfood string\uF1C5Food to eatOverload method of eat. This define the animal eat by which tool.Parameterstool Toolstring Name { get; }Eat()void Eat()Eat(string)void Eat(string food)Eat(Tool)void Eat(Tool tool) where Tool : class", + "Number": 74, + "Text": "74 / 85Property Valuestring\uF1C5This is basic interface of all animal.MethodsAnimal's eat method.Feed the animal with some foodParametersfood string\uF1C5Food to eatOverload method of eat. This define the animal eat by which tool.Parametersstring Name { get; }Eat()void Eat()Eat(string)void Eat(string food)Eat(Tool)void Eat(Tool tool) where Tool : class", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -6598,13 +6614,13 @@ ] }, { - "Number": 72, - "Text": "72 / 82Tool name.Type ParametersToolIt's a class type.", + "Number": 75, + "Text": "75 / 85tool ToolTool name.Type ParametersToolIt's a class type.", "Links": [] }, { - "Number": 73, - "Text": "73 / 82Namespace:CatLibraryAssembly:CatLibrary.dllCat's interfaceInherited MembersIAnimal.Name , IAnimal.this[int] , IAnimal.Eat() , IAnimal.Eat(Tool) , IAnimal.Eat(string)Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)Eventseat event of cat. Every cat must implement this event.Event TypeEventHandler\uF1C5Interface ICatpublic interface ICat : IAnimaleatevent EventHandler eat", + "Number": 76, + "Text": "76 / 85Namespace:CatLibraryAssembly:CatLibrary.dllCat's interfaceInherited MembersIAnimal.Name , IAnimal.this[int] , IAnimal.Eat() , IAnimal.Eat(Tool) , IAnimal.Eat(string)Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)Eventseat event of cat. Every cat must implement this event.Event TypeEventHandler\uF1C5Cat's interfaceInterface ICatpublic interface ICat : IAnimaleatevent EventHandler eat", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" @@ -6617,7 +6633,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6626,7 +6642,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6635,7 +6651,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Coordinates": { "Left": 28, "Top": 90.499939 @@ -6644,7 +6660,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Coordinates": { "Left": 28, "Top": 90.499939 @@ -6653,7 +6669,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Coordinates": { "Left": 28, "Top": 425.75 @@ -6662,7 +6678,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 73, "Coordinates": { "Left": 28, "Top": 425.75 @@ -6671,52 +6687,52 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 74, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, { "Goto": { - "PageNumber": 71, + "PageNumber": 74, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, { "Goto": { - "PageNumber": 71, + "PageNumber": 74, "Coordinates": { "Left": 28, - "Top": 214.24994 + "Top": 184.24994 } } }, { "Goto": { - "PageNumber": 71, + "PageNumber": 74, "Coordinates": { "Left": 28, - "Top": 449.74994 + "Top": 419.74994 } } }, { "Goto": { - "PageNumber": 71, + "PageNumber": 74, "Coordinates": { "Left": 28, - "Top": 449.74994 + "Top": 419.74994 } } }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6725,7 +6741,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6734,7 +6750,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6743,7 +6759,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6752,7 +6768,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6761,7 +6777,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6770,7 +6786,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6779,7 +6795,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 77, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6788,7 +6804,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6797,7 +6813,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6806,7 +6822,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6815,7 +6831,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 78, "Coordinates": { "Left": 28, "Top": 764 @@ -6825,8 +6841,8 @@ ] }, { - "Number": 74, - "Text": "74 / 82Namespace:CatLibraryAssembly:CatLibrary.dllIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classInheritanceobject\uF1C5 ICatExtensionInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsExtension method to let cat playParametersicat ICatCattoy ContainersRefType.ColorTypeSomething to playClass ICatExtensionpublic static class ICatExtension\uF12CPlay(ICat, ColorType)public static void Play(this ICat icat, ContainersRefType.ColorType toy)", + "Number": 77, + "Text": "77 / 85Namespace:CatLibraryAssembly:CatLibrary.dllIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classInheritanceobject\uF1C5 ICatExtensionInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsExtension method to let cat playParametersicat ICatCattoy ContainersRefType.ColorTypeSomething to playClass ICatExtensionpublic static class ICatExtension\uF12CPlay(ICat, ColorType)public static void Play(this ICat icat, ContainersRefType.ColorType toy)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -6902,7 +6918,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6911,7 +6927,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -6920,7 +6936,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -6929,7 +6945,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -6938,7 +6954,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -6947,7 +6963,7 @@ }, { "Goto": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -6956,7 +6972,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -6965,7 +6981,7 @@ }, { "Goto": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -6975,8 +6991,8 @@ ] }, { - "Number": 75, - "Text": "75 / 82Extension method hint that how long the cat can sleep.Parametersicat ICatThe type will be extended.hours long\uF1C5The length of sleep.Sleep(ICat, long)public static void Sleep(this ICat icat, long hours)", + "Number": 78, + "Text": "78 / 85Extension method hint that how long the cat can sleep.Parametersicat ICatThe type will be extended.hours long\uF1C5The length of sleep.Sleep(ICat, long)public static void Sleep(this ICat icat, long hours)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -6989,7 +7005,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -6999,12 +7015,12 @@ ] }, { - "Number": 76, - "Text": "76 / 82Namespace:CatLibraryAssembly:CatLibrary.dllGeneric delegate with many constrains.Parametersk KType K.t TType T.l LType L.Type ParametersKGeneric K.TGeneric T.LGeneric L.Delegate MRefDelegatepublic delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable", + "Number": 79, + "Text": "79 / 85Namespace:CatLibraryAssembly:CatLibrary.dllGeneric delegate with many constrains.Parametersk KType K.t TType T.l LType L.Type ParametersKGeneric K.TGeneric T.LGeneric L.Delegate MRefDelegatepublic delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable", "Links": [ { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7013,7 +7029,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7023,8 +7039,8 @@ ] }, { - "Number": 77, - "Text": "77 / 82Namespace:CatLibraryAssembly:CatLibrary.dllDelegate in the namespaceParameterspics List\uF1C5a name list of pictures.name string\uF1C5give out the needed name.Delegate MRefNormalDelegatepublic delegate void MRefNormalDelegate(List pics, out string name)", + "Number": 80, + "Text": "80 / 85Namespace:CatLibraryAssembly:CatLibrary.dllDelegate in the namespaceParameterspics List\uF1C5a name list of pictures.name string\uF1C5give out the needed name.Delegate MRefNormalDelegatepublic delegate void MRefNormalDelegate(List pics, out string name)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" @@ -7055,7 +7071,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7064,7 +7080,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7074,8 +7090,8 @@ ] }, { - "Number": 78, - "Text": "78 / 82Namespace:CatLibraryAssembly:CatLibrary.dllTom class is only inherit from Object. Not any member inside itself.Inheritanceobject\uF1C5 TomDerivedTomFromBaseClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis is a Tom Method with complex type as returnParametersa ComplexA complex inputb Tuple\uF1C5Another complex inputClass Tompublic class Tom\uF12CTomMethod(Complex, Tuple)public Complex TomMethod(Complex a, Tuple b)", + "Number": 81, + "Text": "81 / 85Namespace:CatLibraryAssembly:CatLibrary.dllTom class is only inherit from Object. Not any member inside itself.Inheritanceobject\uF1C5 TomDerivedTomFromBaseClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis is a Tom Method with complex type as returnParametersa ComplexA complex inputb Tuple\uF1C5Another complex inputClass Tompublic class Tom\uF12CTomMethod(Complex, Tuple)public Complex TomMethod(Complex a, Tuple b)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7169,7 +7185,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7178,7 +7194,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7187,7 +7203,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7196,7 +7212,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7205,7 +7221,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7214,7 +7230,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7223,7 +7239,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -7232,7 +7248,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7241,7 +7257,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7250,7 +7266,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7259,7 +7275,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7268,7 +7284,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7277,7 +7293,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7286,7 +7302,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7295,7 +7311,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7304,7 +7320,7 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, "Type": 2, "Coordinates": { "Top": 0 @@ -7314,8 +7330,8 @@ ] }, { - "Number": 79, - "Text": "79 / 82ReturnsComplexComplex TomFromBaseClassExceptionsNotImplementedException\uF1C5This is not implementedArgumentException\uF1C5This is the exception to be thrown when implementedCatExceptionThis is the exception in current documentation", + "Number": 82, + "Text": "82 / 85ReturnsComplexComplex TomFromBaseClassExceptionsNotImplementedException\uF1C5This is not implementedArgumentException\uF1C5This is the exception to be thrown when implementedCatExceptionThis is the exception in current documentation", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -7346,7 +7362,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -7355,7 +7371,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7364,7 +7380,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7373,7 +7389,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7382,7 +7398,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7391,7 +7407,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7400,7 +7416,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7409,7 +7425,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7418,7 +7434,7 @@ }, { "Goto": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -7427,7 +7443,7 @@ }, { "Goto": { - "PageNumber": 58, + "PageNumber": 60, "Type": 2, "Coordinates": { "Top": 0 @@ -7436,7 +7452,7 @@ }, { "Goto": { - "PageNumber": 58, + "PageNumber": 60, "Type": 2, "Coordinates": { "Top": 0 @@ -7446,8 +7462,8 @@ ] }, { - "Number": 80, - "Text": "80 / 82Namespace:CatLibraryAssembly:CatLibrary.dllTomFromBaseClass inherits from @Inheritanceobject\uF1C5 Tom TomFromBaseClassInherited MembersTom.TomMethod(Complex, Tuple) ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsThis is a #ctor with parameterParametersk int\uF1C5Class TomFromBaseClasspublic class TomFromBaseClass : Tom\uF12C\uF12CTomFromBaseClass(int)public TomFromBaseClass(int k)", + "Number": 83, + "Text": "83 / 85Namespace:CatLibraryAssembly:CatLibrary.dllTomFromBaseClass inherits from @Inheritanceobject\uF1C5 Tom TomFromBaseClassInherited MembersTom.TomMethod(Complex, Tuple) ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsThis is a #ctor with parameterParametersk int\uF1C5Class TomFromBaseClasspublic class TomFromBaseClass : Tom\uF12C\uF12CTomFromBaseClass(int)public TomFromBaseClass(int k)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7532,7 +7548,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7541,7 +7557,7 @@ }, { "Goto": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -7550,7 +7566,7 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, "Type": 2, "Coordinates": { "Top": 0 @@ -7559,7 +7575,7 @@ }, { "Goto": { - "PageNumber": 78, + "PageNumber": 81, "Coordinates": { "Left": 28, "Top": 351.5 @@ -7569,12 +7585,12 @@ ] }, { - "Number": 81, - "Text": "81 / 82EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", + "Number": 84, + "Text": "84 / 85EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", "Links": [ { "Goto": { - "PageNumber": 82, + "PageNumber": 85, "Type": 2, "Coordinates": { "Top": 0 @@ -7583,7 +7599,7 @@ }, { "Goto": { - "PageNumber": 82, + "PageNumber": 85, "Type": 2, "Coordinates": { "Top": 0 @@ -7593,8 +7609,8 @@ ] }, { - "Number": 82, - "Text": "82 / 82Namespace:MRef.Demo.EnumerationAssembly:CatLibrary.dllEnumeration ColorTypeFieldsRed = 0this color is redBlue = 1blue like riverYellow = 2yellow comes from desertRemarksRed/Blue/Yellow can become all color you want.See Alsoobject\uF1C5Enum ColorTypepublic enum ColorType", + "Number": 85, + "Text": "85 / 85Namespace:MRef.Demo.EnumerationAssembly:CatLibrary.dllEnumeration ColorTypeFieldsRed = 0this color is redBlue = 1blue like riverYellow = 2yellow comes from desertRemarksRed/Blue/Yellow can become all color you want.See Alsoobject\uF1C5Enum ColorTypepublic enum ColorType", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7613,7 +7629,7 @@ }, { "Goto": { - "PageNumber": 81, + "PageNumber": 84, "Type": 2, "Coordinates": { "Top": 0 @@ -7982,7 +7998,7 @@ "Title": "ContainersRefType", "Children": [], "Destination": { - "PageNumber": 50, + "PageNumber": 51, "Type": 2, "Coordinates": { "Top": 0 @@ -7993,7 +8009,7 @@ "Title": "ContainersRefType.ColorType", "Children": [], "Destination": { - "PageNumber": 52, + "PageNumber": 54, "Type": 2, "Coordinates": { "Top": 0 @@ -8004,7 +8020,7 @@ "Title": "ContainersRefType.ContainersRefTypeChild", "Children": [], "Destination": { - "PageNumber": 53, + "PageNumber": 55, "Type": 2, "Coordinates": { "Top": 0 @@ -8015,7 +8031,7 @@ "Title": "ContainersRefType.ContainersRefTypeChildInterface", "Children": [], "Destination": { - "PageNumber": 54, + "PageNumber": 56, "Type": 2, "Coordinates": { "Top": 0 @@ -8026,7 +8042,7 @@ "Title": "ContainersRefType.ContainersRefTypeDelegate", "Children": [], "Destination": { - "PageNumber": 55, + "PageNumber": 57, "Type": 2, "Coordinates": { "Top": 0 @@ -8037,7 +8053,7 @@ "Title": "ExplicitLayoutClass", "Children": [], "Destination": { - "PageNumber": 56, + "PageNumber": 58, "Type": 2, "Coordinates": { "Top": 0 @@ -8048,7 +8064,7 @@ "Title": "Issue231", "Children": [], "Destination": { - "PageNumber": 57, + "PageNumber": 59, "Type": 2, "Coordinates": { "Top": 0 @@ -8057,7 +8073,7 @@ } ], "Destination": { - "PageNumber": 49, + "PageNumber": 50, "Type": 2, "Coordinates": { "Top": 0 @@ -8068,7 +8084,7 @@ "Title": "CatException", "Children": [], "Destination": { - "PageNumber": 58, + "PageNumber": 60, "Type": 2, "Coordinates": { "Top": 0 @@ -8079,7 +8095,7 @@ "Title": "Cat", "Children": [], "Destination": { - "PageNumber": 59, + "PageNumber": 61, "Type": 2, "Coordinates": { "Top": 0 @@ -8090,7 +8106,7 @@ "Title": "Complex", "Children": [], "Destination": { - "PageNumber": 68, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -8101,7 +8117,7 @@ "Title": "FakeDelegate", "Children": [], "Destination": { - "PageNumber": 69, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -8112,7 +8128,7 @@ "Title": "IAnimal", "Children": [], "Destination": { - "PageNumber": 70, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -8123,7 +8139,7 @@ "Title": "ICat", "Children": [], "Destination": { - "PageNumber": 73, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -8134,7 +8150,7 @@ "Title": "ICatExtension", "Children": [], "Destination": { - "PageNumber": 74, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -8145,7 +8161,7 @@ "Title": "MRefDelegate", "Children": [], "Destination": { - "PageNumber": 76, + "PageNumber": 79, "Type": 2, "Coordinates": { "Top": 0 @@ -8156,7 +8172,7 @@ "Title": "MRefNormalDelegate", "Children": [], "Destination": { - "PageNumber": 77, + "PageNumber": 80, "Type": 2, "Coordinates": { "Top": 0 @@ -8167,7 +8183,7 @@ "Title": "Tom", "Children": [], "Destination": { - "PageNumber": 78, + "PageNumber": 81, "Type": 2, "Coordinates": { "Top": 0 @@ -8178,7 +8194,7 @@ "Title": "TomFromBaseClass", "Children": [], "Destination": { - "PageNumber": 80, + "PageNumber": 83, "Type": 2, "Coordinates": { "Top": 0 @@ -8187,7 +8203,7 @@ } ], "Destination": { - "PageNumber": 47, + "PageNumber": 48, "Type": 2, "Coordinates": { "Top": 0 @@ -8201,7 +8217,7 @@ "Title": "ColorType", "Children": [], "Destination": { - "PageNumber": 82, + "PageNumber": 85, "Type": 2, "Coordinates": { "Top": 0 @@ -8210,7 +8226,7 @@ } ], "Destination": { - "PageNumber": 81, + "PageNumber": 84, "Type": 2, "Coordinates": { "Top": 0 diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromAssembly.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromAssembly.Class1.html.view.verified.json index 56866c1d964..1638a8311e9 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromAssembly.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromAssembly.Class1.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "This is a test class.", "title": "Class Class1", "content": "

    Class Class1

    \r\n
    \r\n
    Namespace
    BuildFromAssembly
    Assembly
    BuildFromAssembly.dll
    \r\n

    This is a test class.

    \n
    public class Class1

    Inheritance

    \r\n
    \nobject\n
    \n
    \nClass1\n
    \n\r\n

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n

    Constructors

    Class1()

    \r\n
    public Class1()

    Methods

    HelloWorld()

    \r\n

    Hello World.

    \n
    public static void HelloWorld()
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json index 2ec4d89fc0b..77cda1b8889 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "This is a test class to have something for DocFX to document.", "title": "Class Inheritdoc.Issue7484", "content": "

    Class Inheritdoc.Issue7484

    \r\n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n

    This is a test class to have something for DocFX to document.

    \n
    public class Inheritdoc.Issue7484

    Inheritance

    \r\n
    \nobject\n
    \n\n\r\n

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n

    Remarks

    We're going to talk about things now.

    \n
    \nSimple method to generate docs for.\n
    \nA string that could have something.\n
    \n

    Constructors

    Issue7484()

    \r\n

    This is a constructor to document.

    \n
    public Issue7484()

    Properties

    DoDad

    \r\n

    A string that could have something.

    \n
    public string DoDad { get; }

    Property Value

    string
    \r\n
    \r\n\r\n\r\n\r\n

    Methods

    BoolReturningMethod(bool)

    \r\n

    Simple method to generate docs for.

    \n
    public bool BoolReturningMethod(bool source)

    Parameters

    source bool
    \r\n
    \r\n\r\n\r\n

    A meaningless boolean value, much like most questions in the world.

    \n\r\n

    Returns

    bool
    \r\n
    \r\n\r\n\r\n

    An exactly equivalently meaningless boolean value, much like most answers in the world.

    \n\r\n

    Remarks

    I'd like to take a moment to thank all of those who helped me get to\na place where I can write documentation like this.

    \n", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromProject.Issue8725.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromProject.Issue8725.html.view.verified.json index 462e442e986..d9fe432c1e7 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromProject.Issue8725.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromProject.Issue8725.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "A nice class", "title": "Class Issue8725", "content": "

    Class Issue8725

    \r\n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n

    A nice class

    \n
    public class Issue8725

    Inheritance

    \r\n
    \nobject\n
    \n\n\r\n

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n

    Methods

    MoreOperations()

    \r\n

    Another nice operation

    \n
    public void MoreOperations()

    MyOperation()

    \r\n

    A nice operation

    \n
    public void MyOperation()

    See Also

    \r\n
    \nClass1\n
    \n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json index f0b90669e1e..9dae3ad092e 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "This is the BaseClass", "title": "Class BaseClass1", "content": "

    Class BaseClass1

    \r\n
    \r\n
    Namespace
    BuildFromVBSourceCode
    \r\n

    This is the BaseClass

    \n
    public abstract class BaseClass1

    Inheritance

    \r\n
    \nobject\n
    \n\n\r\n

    Derived

    \r\n
    \nClass1\n
    \n\r\n

    Inherited Members

    \r\n\n\n\n\n\n\n\n\n\r\n

    Methods

    WithDeclarationKeyword(Class1)

    \r\n
    public abstract DateTime WithDeclarationKeyword(Class1 keyword)

    Parameters

    keyword Class1
    \r\n
    \r\n\r\n\r\n\r\n

    Returns

    DateTime
    \r\n
    \r\n\r\n\r\n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json index 9c1f3b82fa6..4600c840897 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "This is summary from vb class...", "title": "Class Class1", "content": "

    Class Class1

    \r\n
    \r\n
    Namespace
    BuildFromVBSourceCode
    \r\n

    This is summary from vb class...

    \n
    public class Class1 : BaseClass1

    Inheritance

    \r\n
    \nobject\n
    \n\n
    \nClass1\n
    \n\r\n

    Inherited Members

    \r\n\n\n\n\n\n\n\n\n\n\r\n

    Fields

    ValueClass

    \r\n

    This is a Value type

    \n
    public Class1 ValueClass

    Field Value

    Class1
    \r\n
    \r\n\r\n\r\n\r\n

    Properties

    Keyword Deprecated

    \r\n\n
    [Obsolete("This member is obsolete.", true)]\npublic Class1 Keyword { get; }

    Property Value

    Class1
    \r\n
    \r\n\r\n\r\n\r\n

    Methods

    Value(string)

    \r\n

    This is a Function

    \n
    public int Value(string name)

    Parameters

    name string
    \r\n
    \r\n\r\n\r\n

    Name as the String\nvalue

    \n\r\n

    Returns

    int
    \r\n
    \r\n\r\n\r\n

    Returns\nAhooo

    \n\r\n

    WithDeclarationKeyword(Class1)

    \r\n

    What is Sub?

    \n
    public override DateTime WithDeclarationKeyword(Class1 keyword)

    Parameters

    keyword Class1
    \r\n
    \r\n\r\n\r\n\r\n

    Returns

    DateTime
    \r\n
    \r\n\r\n\r\n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Cat-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Cat-2.html.view.verified.json index 0497743ac2f..5c45d011df6 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Cat-2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Cat-2.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Here's main class of this Demo.\nYou can see mostly type of article within this class and you for more detail, please see the remarks.\n\nthis class is a template class. It has two Generic parameter. they are: T and K.\nThe extension method of this class can refer to class", "title": "Class Cat", "content": "

    Class Cat<T, K> Deprecated

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n

    Here's main class of this Demo.

    \n

    You can see mostly type of article within this class and you for more detail, please see the remarks.

    \n

    \n

    this class is a template class. It has two Generic parameter. they are: T and K.

    \n

    The extension method of this class can refer to class

    \n
    [Serializable]\n[Obsolete]\npublic class Cat<T, K> : ICat, IAnimal where T : class, new() where K : struct

    Type Parameters

    T
    \r\n
    \r\n\r\n\r\n

    This type should be class and can new instance.

    \n\r\n
    K
    \r\n
    \r\n\r\n\r\n

    This type is a struct type, class type can't be used for this parameter.

    \n\r\n

    Inheritance

    \r\n
    \nobject\n
    \n\n\r\n

    Implements

    \r\n
    \nICat\n
    \n\n\r\n

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n

    Extension Methods

    \r\n\n\n\r\n

    Examples

    Here's example of how to create an instance of this class. As T is limited with class and K is limited with struct.

    \n
    var a = new Cat(object, int)();\nint catNumber = new int();\nunsafe\n{\n    a.GetFeetLength(catNumber);\n}
    \n

    As you see, here we bring in pointer so we need to add unsafe keyword.

    \n

    Remarks

    Here's all the content you can see in this class.

    \n

    Constructors

    Cat()

    \r\n

    Default constructor.

    \n
    public Cat()

    Cat(T)

    \r\n

    Constructor with one generic parameter.

    \n
    public Cat(T ownType)

    Parameters

    ownType T
    \r\n
    \r\n\r\n\r\n

    This parameter type defined by class.

    \n\r\n

    Cat(string, out int, string, bool)

    \r\n

    It's a complex constructor. The parameter will have some attributes.

    \n
    public Cat(string nickName, out int age, string realName, bool isHealthy)

    Parameters

    nickName string
    \r\n
    \r\n\r\n\r\n

    it's string type.

    \n\r\n
    age int
    \r\n
    \r\n\r\n\r\n

    It's an out and ref parameter.

    \n\r\n
    realName string
    \r\n
    \r\n\r\n\r\n

    It's an out paramter.

    \n\r\n
    isHealthy bool
    \r\n
    \r\n\r\n\r\n

    It's an in parameter.

    \n\r\n

    Fields

    isHealthy Deprecated

    \r\n

    Field with attribute.

    \n
    [ContextStatic]\n[NonSerialized]\n[Obsolete]\npublic bool isHealthy

    Field Value

    bool
    \r\n
    \r\n\r\n\r\n\r\n

    Properties

    Age Deprecated

    \r\n

    Hint cat's age.

    \n
    [Obsolete]\nprotected int Age { get; set; }

    Property Value

    int
    \r\n
    \r\n\r\n\r\n\r\n

    Name

    \r\n

    EII property.

    \n
    public string Name { get; }

    Property Value

    string
    \r\n
    \r\n\r\n\r\n\r\n

    this[string]

    \r\n

    This is index property of Cat. You can see that the visibility is different between get and set method.

    \n
    public int this[string a] { protected get; set; }

    Property Value

    int
    \r\n
    \r\n\r\n\r\n\r\n

    Methods

    CalculateFood(DateTime)

    \r\n

    It's a method with complex return type.

    \n
    public Dictionary<string, List<int>> CalculateFood(DateTime date)

    Parameters

    date DateTime
    \r\n
    \r\n\r\n\r\n

    Date time to now.

    \n\r\n

    Returns

    Dictionary<string, List<int>>
    \r\n
    \r\n\r\n\r\n

    It's a relationship map of different kind food.

    \n\r\n

    Equals(object)

    \r\n

    Override the method of Object.Equals(object obj).

    \n
    public override bool Equals(object obj)

    Parameters

    obj object
    \r\n
    \r\n\r\n\r\n

    Can pass any class type.

    \n\r\n

    Returns

    bool
    \r\n
    \r\n\r\n\r\n

    The return value tell you whehter the compare operation is successful.

    \n\r\n

    GetTailLength(int*, params object[])

    \r\n

    It's an unsafe method.\nAs you see, catName is a pointer, so we need to add unsafe keyword.

    \n
    public long GetTailLength(int* catName, params object[] parameters)

    Parameters

    catName int*
    \r\n
    \r\n\r\n\r\n

    Thie represent for cat name length.

    \n\r\n
    parameters object[]
    \r\n
    \r\n\r\n\r\n

    Optional parameters.

    \n\r\n

    Returns

    long
    \r\n
    \r\n\r\n\r\n

    Return cat tail's length.

    \n\r\n

    Jump(T, K, ref bool)

    \r\n

    This method have attribute above it.

    \n
    [Conditional("Debug")]\npublic void Jump(T ownType, K anotherOwnType, ref bool cheat)

    Parameters

    ownType T
    \r\n
    \r\n\r\n\r\n

    Type come from class define.

    \n\r\n
    anotherOwnType K
    \r\n
    \r\n\r\n\r\n

    Type come from class define.

    \n\r\n
    cheat bool
    \r\n
    \r\n\r\n\r\n

    Hint whether this cat has cheat mode.

    \n\r\n

    Exceptions

    ArgumentException
    \r\n
    \r\n\r\n\r\n

    This is an argument exception

    \n\r\n

    ownEat Deprecated

    \r\n\n

    Eat event of this cat

    \n
    [Obsolete("This _event handler_ is deprecated.")]\npublic event EventHandler ownEat

    Event Type

    EventHandler
    \r\n
    \r\n\r\n\r\n\r\n

    Operators

    operator +(Cat<T, K>, int)

    \r\n

    Addition operator of this class.

    \n
    public static int operator +(Cat<T, K> lsr, int rsr)

    Parameters

    lsr Cat<T, K>
    \r\n
    \r\n\r\n\r\n

    ..

    \n\r\n
    rsr int
    \r\n
    \r\n\r\n\r\n

    ~~

    \n\r\n

    Returns

    int
    \r\n
    \r\n\r\n\r\n

    Result with int type.

    \n\r\n

    explicit operator Tom(Cat<T, K>)

    \r\n

    Expilicit operator of this class.

    \n

    It means this cat can evolve to change to Tom. Tom and Jerry.

    \n
    public static explicit operator Tom(Cat<T, K> src)

    Parameters

    src Cat<T, K>
    \r\n
    \r\n\r\n\r\n

    Instance of this class.

    \n\r\n

    Returns

    Tom
    \r\n
    \r\n\r\n\r\n

    Advanced class type of cat.

    \n\r\n

    operator -(Cat<T, K>, int)

    \r\n

    Similar with operaotr +, refer to that topic.

    \n
    public static int operator -(Cat<T, K> lsr, int rsr)

    Parameters

    lsr Cat<T, K>
    \r\n
    \r\n\r\n\r\n\r\n
    rsr int
    \r\n
    \r\n\r\n\r\n\r\n

    Returns

    int
    \r\n
    \r\n\r\n\r\n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json index 3942424801d..2f51e0709d0 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Enumeration ColorType", "title": "Enum ContainersRefType.ColorType", "content": "

    Enum ContainersRefType.ColorType

    \r\n
    \r\n
    Namespace
    CatLibrary.Core
    Assembly
    CatLibrary.Core.dll
    \r\n

    Enumeration ColorType

    \n
    public enum ContainersRefType.ColorType

    Fields

    Red = 0
    \r\n
    \r\n\r\n\r\n

    red

    \n\r\n
    Blue = 1
    \r\n
    \r\n\r\n\r\n

    blue

    \n\r\n
    Yellow = 2
    \r\n
    \r\n\r\n\r\n

    yellow

    \n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json index da5f58e1712..b82e68d0f90 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Delegate ContainersRefTypeDelegate", "title": "Delegate ContainersRefType.ContainersRefTypeDelegate", "content": "

    Delegate ContainersRefType.ContainersRefTypeDelegate

    \r\n
    \r\n
    Namespace
    CatLibrary.Core
    Assembly
    CatLibrary.Core.dll
    \r\n

    Delegate ContainersRefTypeDelegate

    \n
    public delegate void ContainersRefType.ContainersRefTypeDelegate()
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json index 677e32a0365..21ea06b1a19 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Struct ContainersRefType", "title": "Struct ContainersRefType", "content": "

    Struct ContainersRefType

    \r\n
    \r\n
    Namespace
    CatLibrary.Core
    Assembly
    CatLibrary.Core.dll
    \r\n

    Struct ContainersRefType

    \n
    public struct ContainersRefType

    Inherited Members

    \r\n\n\n\n\n\n\n\r\n

    Extension Methods

    \r\n\n\n\r\n

    Fields

    ColorCount

    \r\n

    ColorCount

    \n
    public long ColorCount

    Field Value

    long
    \r\n
    \r\n\r\n\r\n\r\n

    Properties

    GetColorCount

    \r\n

    GetColorCount

    \n
    public long GetColorCount { get; }

    Property Value

    long
    \r\n
    \r\n\r\n\r\n\r\n

    Methods

    ContainersRefTypeNonRefMethod(params object[])

    \r\n

    ContainersRefTypeNonRefMethod

    \narray\n
    public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)

    Parameters

    parmsArray object[]
    \r\n
    \r\n\r\n\r\n\r\n

    Returns

    int
    \r\n
    \r\n\r\n\r\n\r\n

    ContainersRefTypeEventHandler

    \r\n
    public event EventHandler ContainersRefTypeEventHandler

    Event Type

    EventHandler
    \r\n
    \r\n\r\n\r\n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json index 52960e08fcc..309508eb846 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Fake delegate", "title": "Delegate FakeDelegate", "content": "

    Delegate FakeDelegate<T>

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n

    Fake delegate

    \n
    public delegate int FakeDelegate<T>(long num, string name, params object[] scores)

    Parameters

    num long
    \r\n
    \r\n\r\n\r\n

    Fake para

    \n\r\n
    name string
    \r\n
    \r\n\r\n\r\n

    Fake para

    \n\r\n
    scores object[]
    \r\n
    \r\n\r\n\r\n

    Optional Parameter.

    \n\r\n

    Returns

    int
    \r\n
    \r\n\r\n\r\n

    Return a fake number to confuse you.

    \n\r\n

    Type Parameters

    T
    \r\n
    \r\n\r\n\r\n

    Fake para

    \n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.IAnimal.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.IAnimal.html.view.verified.json index 04b08ec05ac..680e836d245 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.IAnimal.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.IAnimal.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "This is basic interface of all animal.", "title": "Interface IAnimal", "content": "

    Interface IAnimal

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n

    This is basic interface of all animal.

    \n
    public interface IAnimal

    Properties

    Name

    \r\n

    Name of Animal.

    \n
    string Name { get; }

    Property Value

    string
    \r\n
    \r\n\r\n\r\n\r\n

    this[int]

    \r\n

    Return specific number animal's name.

    \n
    string this[int index] { get; }

    Property Value

    string
    \r\n
    \r\n\r\n\r\n\r\n

    Methods

    Eat()

    \r\n

    Animal's eat method.

    \n
    void Eat()

    Eat<Tool>(Tool)

    \r\n

    Overload method of eat. This define the animal eat by which tool.

    \n
    void Eat<Tool>(Tool tool) where Tool : class

    Parameters

    tool Tool
    \r\n
    \r\n\r\n\r\n

    Tool name.

    \n\r\n

    Type Parameters

    Tool
    \r\n
    \r\n\r\n\r\n

    It's a class type.

    \n\r\n

    Eat(string)

    \r\n

    Feed the animal with some food

    \n
    void Eat(string food)

    Parameters

    food string
    \r\n
    \r\n\r\n\r\n

    Food to eat

    \n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.ICat.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.ICat.html.view.verified.json index 282ebdd05a6..1ac959c3d30 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.ICat.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.ICat.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Cat's interface", "title": "Interface ICat", "content": "

    Interface ICat

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n

    Cat's interface

    \n
    public interface ICat : IAnimal

    Implements

    \r\n\n\r\n

    Extension Methods

    \r\n\n\n\r\n

    eat

    \r\n

    eat event of cat. Every cat must implement this event.

    \n
    event EventHandler eat

    Event Type

    EventHandler
    \r\n
    \r\n\r\n\r\n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.ICatExtension.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.ICatExtension.html.view.verified.json index 7c7f0f9309f..0e03d515b1f 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.ICatExtension.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.ICatExtension.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "It's the class that contains ICat interface's extension method.\nThis class must be public and static.\nAlso it shouldn't be a geneic class", "title": "Class ICatExtension", "content": "

    Class ICatExtension

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n

    It's the class that contains ICat interface's extension method.

    \n

    This class must be public and static.

    \n

    Also it shouldn't be a geneic class

    \n
    public static class ICatExtension

    Inheritance

    \r\n
    \nobject\n
    \n\n\r\n

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n

    Methods

    Play(ICat, ColorType)

    \r\n

    Extension method to let cat play

    \n
    public static void Play(this ICat icat, ContainersRefType.ColorType toy)

    Parameters

    icat ICat
    \r\n
    \r\n\r\n\r\n

    Cat

    \n\r\n
    toy ContainersRefType.ColorType
    \r\n
    \r\n\r\n\r\n

    Something to play

    \n\r\n

    Sleep(ICat, long)

    \r\n

    Extension method hint that how long the cat can sleep.

    \n
    public static void Sleep(this ICat icat, long hours)

    Parameters

    icat ICat
    \r\n
    \r\n\r\n\r\n

    The type will be extended.

    \n\r\n
    hours long
    \r\n
    \r\n\r\n\r\n

    The length of sleep.

    \n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json index bb53d87d19c..be1ef697259 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Generic delegate with many constrains.", "title": "Delegate MRefDelegate", "content": "

    Delegate MRefDelegate<K, T, L>

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n

    Generic delegate with many constrains.

    \n
    public delegate void MRefDelegate<K, T, L>(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable<long>

    Parameters

    k K
    \r\n
    \r\n\r\n\r\n

    Type K.

    \n\r\n
    t T
    \r\n
    \r\n\r\n\r\n

    Type T.

    \n\r\n
    l L
    \r\n
    \r\n\r\n\r\n

    Type L.

    \n\r\n

    Type Parameters

    K
    \r\n
    \r\n\r\n\r\n

    Generic K.

    \n\r\n
    T
    \r\n
    \r\n\r\n\r\n

    Generic T.

    \n\r\n
    L
    \r\n
    \r\n\r\n\r\n

    Generic L.

    \n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json index e1eb196be2c..35b4ae6178e 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Delegate in the namespace", "title": "Delegate MRefNormalDelegate", "content": "

    Delegate MRefNormalDelegate

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n

    Delegate in the namespace

    \n
    public delegate void MRefNormalDelegate(List<string> pics, out string name)

    Parameters

    pics List<string>
    \r\n
    \r\n\r\n\r\n

    a name list of pictures.

    \n\r\n
    name string
    \r\n
    \r\n\r\n\r\n

    give out the needed name.

    \n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Tom.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Tom.html.view.verified.json index b3d6ab3f83c..f7dc765366b 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Tom.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.Tom.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Tom class is only inherit from Object. Not any member inside itself.", "title": "Class Tom", "content": "

    Class Tom

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n

    Tom class is only inherit from Object. Not any member inside itself.

    \n
    public class Tom

    Inheritance

    \r\n
    \nobject\n
    \n
    \nTom\n
    \n\r\n

    Derived

    \r\n\n\r\n

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n

    Methods

    TomMethod(Complex<TomFromBaseClass, TomFromBaseClass>, Tuple<string, Tom>)

    \r\n

    This is a Tom Method with complex type as return

    \n
    public Complex<string, TomFromBaseClass> TomMethod(Complex<TomFromBaseClass, TomFromBaseClass> a, Tuple<string, Tom> b)

    Parameters

    a Complex<TomFromBaseClass, TomFromBaseClass>
    \r\n
    \r\n\r\n\r\n

    A complex input

    \n\r\n
    b Tuple<string, Tom>
    \r\n
    \r\n\r\n\r\n

    Another complex input

    \n\r\n

    Returns

    Complex<string, TomFromBaseClass>
    \r\n
    \r\n\r\n\r\n

    Complex

    \n\r\n

    Exceptions

    NotImplementedException
    \r\n
    \r\n\r\n\r\n

    This is not implemented

    \n\r\n
    ArgumentException
    \r\n
    \r\n\r\n\r\n

    This is the exception to be thrown when implemented

    \n\r\n
    CatException<T>
    \r\n
    \r\n\r\n\r\n

    This is the exception in current documentation

    \n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json index 51b9b5ef72b..383093ec8f8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "*TomFromBaseClass* inherits from @", "title": "Class TomFromBaseClass", "content": "

    Class TomFromBaseClass

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n

    TomFromBaseClass inherits from @

    \n
    public class TomFromBaseClass : Tom

    Inheritance

    \r\n
    \nobject\n
    \n
    \nTom\n
    \n\n\r\n

    Inherited Members

    \r\n\n\n\n\n\n\n\n\n\r\n

    Constructors

    TomFromBaseClass(int)

    \r\n

    This is a #ctor with parameter

    \n
    public TomFromBaseClass(int k)

    Parameters

    k int
    \r\n
    \r\n\r\n\r\n\r\n
    ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json index 13adf183240..fa8d811b656 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json @@ -4,6 +4,7 @@ "_enableSearch": true, "pdf": true, "pdfTocPage": true, + "description": "Enumeration ColorType", "title": "Enum ColorType", "content": "

    Enum ColorType

    \r\n
    \r\n
    Namespace
    MRef.Demo.Enumeration
    Assembly
    CatLibrary.dll
    \r\n

    Enumeration ColorType

    \n
    public enum ColorType

    Fields

    Red = 0
    \r\n
    \r\n\r\n\r\n

    this color is red

    \n\r\n
    Blue = 1
    \r\n
    \r\n\r\n\r\n

    blue like river

    \n\r\n
    Yellow = 2
    \r\n
    \r\n\r\n\r\n

    yellow comes from desert

    \n\r\n

    Remarks

    \nRed/Blue/Yellow can become all color you want.\n

    \n
      \n

      See Also

      \r\n
      \nobject\n
      \n\r\n
      ", "yamlmime": "ApiPage", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/index.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/index.verified.json index 9fd745f5255..e1f1de69c03 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/index.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/index.verified.json @@ -87,7 +87,7 @@ "api/BuildFromProject.Inheritdoc.Issue7484.html": { "href": "api/BuildFromProject.Inheritdoc.Issue7484.html", "title": "Class Inheritdoc.Issue7484 | docfx seed website", - "keywords": "Class Inheritdoc.Issue7484 Namespace BuildFromProject Assembly BuildFromProject.dll This is a test class to have something for DocFX to document. public class Inheritdoc.Issue7484 Inheritance object Inheritdoc.Issue7484 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Remarks We're going to talk about things now. BoolReturningMethod(bool) Simple method to generate docs for. DoDad A string that could have something. Constructors Issue7484() This is a constructor to document. public Issue7484() Properties DoDad A string that could have something. public string DoDad { get; } Property Value string Methods BoolReturningMethod(bool) Simple method to generate docs for. public bool BoolReturningMethod(bool source) Parameters source bool A meaningless boolean value, much like most questions in the world. Returns bool An exactly equivalently meaningless boolean value, much like most answers in the world. Remarks I'd like to take a moment to thank all of those who helped me get to a place where I can write documentation like this." + "keywords": "Class Inheritdoc.Issue7484 Namespace BuildFromProject Assembly BuildFromProject.dll This is a test class to have something for DocFX to document. public class Inheritdoc.Issue7484 Inheritance object Inheritdoc.Issue7484 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Remarks We're going to talk about things now. BoolReturningMethod(bool) Simple method to generate docs for. DoDad A string that could have something. Constructors Issue7484() This is a constructor to document. public Issue7484() Properties DoDad A string that could have something. public string DoDad { get; } Property Value string This is a test class to have something for DocFX to document. Methods BoolReturningMethod(bool) Simple method to generate docs for. public bool BoolReturningMethod(bool source) Parameters source bool A meaningless boolean value, much like most questions in the world. Returns bool An exactly equivalently meaningless boolean value, much like most answers in the world. Remarks I'd like to take a moment to thank all of those who helped me get to a place where I can write documentation like this." }, "api/BuildFromProject.Inheritdoc.Issue8101.html": { "href": "api/BuildFromProject.Inheritdoc.Issue8101.html", @@ -142,12 +142,12 @@ "api/BuildFromVBSourceCode.BaseClass1.html": { "href": "api/BuildFromVBSourceCode.BaseClass1.html", "title": "Class BaseClass1 | docfx seed website", - "keywords": "Class BaseClass1 Namespace BuildFromVBSourceCode This is the BaseClass public abstract class BaseClass1 Inheritance object BaseClass1 Derived Class1 Inherited Members object.Equals(object) object.Equals(object, object) object.Finalize() object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods WithDeclarationKeyword(Class1) public abstract DateTime WithDeclarationKeyword(Class1 keyword) Parameters keyword Class1 Returns DateTime" + "keywords": "Class BaseClass1 Namespace BuildFromVBSourceCode This is the BaseClass public abstract class BaseClass1 Inheritance object BaseClass1 Derived Class1 Inherited Members object.Equals(object) object.Equals(object, object) object.Finalize() object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods WithDeclarationKeyword(Class1) public abstract DateTime WithDeclarationKeyword(Class1 keyword) Parameters keyword Class1 This is the BaseClass Returns DateTime This is the BaseClass" }, "api/BuildFromVBSourceCode.Class1.html": { "href": "api/BuildFromVBSourceCode.Class1.html", "title": "Class Class1 | docfx seed website", - "keywords": "Class Class1 Namespace BuildFromVBSourceCode This is summary from vb class... public class Class1 : BaseClass1 Inheritance object BaseClass1 Class1 Inherited Members object.Equals(object) object.Equals(object, object) object.Finalize() object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Fields ValueClass This is a Value type public Class1 ValueClass Field Value Class1 Properties Keyword [Obsolete(\"This member is obsolete.\", true)] public Class1 Keyword { get; } Property Value Class1 Methods Value(string) This is a Function public int Value(string name) Parameters name string Name as the String value Returns int Returns Ahooo WithDeclarationKeyword(Class1) What is Sub? public override DateTime WithDeclarationKeyword(Class1 keyword) Parameters keyword Class1 Returns DateTime" + "keywords": "Class Class1 Namespace BuildFromVBSourceCode This is summary from vb class... public class Class1 : BaseClass1 Inheritance object BaseClass1 Class1 Inherited Members object.Equals(object) object.Equals(object, object) object.Finalize() object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Fields ValueClass This is a Value type public Class1 ValueClass Field Value Class1 This is summary from vb class... Properties Keyword [Obsolete(\"This member is obsolete.\", true)] public Class1 Keyword { get; } Property Value Class1 This is summary from vb class... Methods Value(string) This is a Function public int Value(string name) Parameters name string Name as the String value Returns int Returns Ahooo WithDeclarationKeyword(Class1) What is Sub? public override DateTime WithDeclarationKeyword(Class1 keyword) Parameters keyword Class1 This is summary from vb class... Returns DateTime This is summary from vb class..." }, "api/BuildFromVBSourceCode.html": { "href": "api/BuildFromVBSourceCode.html", @@ -157,7 +157,7 @@ "api/CatLibrary.Cat-2.html": { "href": "api/CatLibrary.Cat-2.html", "title": "Class Cat | docfx seed website", - "keywords": "Class Cat Namespace CatLibrary Assembly CatLibrary.dll Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to ICatExtension class This is a class talking about CAT. NOTE This is a CAT class Refer to IAnimal to see other animals. [Serializable] [Obsolete] public class Cat : ICat, IAnimal where T : class, new() where K : struct Type Parameters T This type should be class and can new instance. K This type is a struct type, class type can't be used for this parameter. Inheritance object Cat Implements ICat IAnimal Inherited Members object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Examples Here's example of how to create an instance of this class. As T is limited with class and K is limited with struct. var a = new Cat(object, int)(); int catNumber = new int(); unsafe { a.GetFeetLength(catNumber); } As you see, here we bring in pointer so we need to add unsafe keyword. Remarks THIS is remarks overridden in MARKDWON file Constructors Cat() Default constructor. public Cat() Cat(string, out int, string, bool) It's a complex constructor. The parameter will have some attributes. public Cat(string nickName, out int age, string realName, bool isHealthy) Parameters nickName string it's string type. age int It's an out and ref parameter. realName string It's an out paramter. isHealthy bool It's an in parameter. Cat(T) Constructor with one generic parameter. public Cat(T ownType) Parameters ownType T This parameter type defined by class. Fields isHealthy Field with attribute. [ContextStatic] [NonSerialized] [Obsolete] public bool isHealthy Field Value bool Properties Age Hint cat's age. [Obsolete] protected int Age { get; set; } Property Value int this[string] This is index property of Cat. You can see that the visibility is different between get and set method. public int this[string a] { protected get; set; } Parameters a string Cat's name. Property Value int Cat's number. Name EII property. public string Name { get; } Property Value string Methods Override CalculateFood Name It's an overridden summary in markdown format This is overriding methods. You can override parameter descriptions for methods, you can even add exceptions to methods. Check the intermediate obj folder to see the data model of the generated method/class. Override Yaml header should follow the data structure. public Dictionary> CalculateFood(DateTime date) Parameters date DateTime This is overridden description for a parameter. id must be specified. Returns Dictionary> It's overridden description for return. type must be specified. Exceptions ArgumentException This is an overridden argument exception. you can add additional exception by adding different exception type. Equals(object) Override the method of Object.Equals(object obj). public override bool Equals(object obj) Parameters obj object Can pass any class type. Returns bool The return value tell you whehter the compare operation is successful. GetTailLength(int*, params object[]) It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword. public long GetTailLength(int* catName, params object[] parameters) Parameters catName int* Thie represent for cat name length. parameters object[] Optional parameters. Returns long Return cat tail's length. Jump(T, K, ref bool) This method have attribute above it. [Conditional(\"Debug\")] public void Jump(T ownType, K anotherOwnType, ref bool cheat) Parameters ownType T Type come from class define. anotherOwnType K Type come from class define. cheat bool Hint whether this cat has cheat mode. Exceptions ArgumentException This is an argument exception Events ownEat Eat event of this cat [Obsolete(\"This _event handler_ is deprecated.\")] public event EventHandler ownEat Event Type EventHandler Operators operator +(Cat, int) Addition operator of this class. public static int operator +(Cat lsr, int rsr) Parameters lsr Cat .. rsr int ~~ Returns int Result with int type. explicit operator Tom(Cat) Expilicit operator of this class. It means this cat can evolve to change to Tom. Tom and Jerry. public static explicit operator Tom(Cat src) Parameters src Cat Instance of this class. Returns Tom Advanced class type of cat. operator -(Cat, int) Similar with operaotr +, refer to that topic. public static int operator -(Cat lsr, int rsr) Parameters lsr Cat rsr int Returns int" + "keywords": "Class Cat Namespace CatLibrary Assembly CatLibrary.dll Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to ICatExtension class This is a class talking about CAT. NOTE This is a CAT class Refer to IAnimal to see other animals. [Serializable] [Obsolete] public class Cat : ICat, IAnimal where T : class, new() where K : struct Type Parameters T This type should be class and can new instance. K This type is a struct type, class type can't be used for this parameter. Inheritance object Cat Implements ICat IAnimal Inherited Members object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Examples Here's example of how to create an instance of this class. As T is limited with class and K is limited with struct. var a = new Cat(object, int)(); int catNumber = new int(); unsafe { a.GetFeetLength(catNumber); } As you see, here we bring in pointer so we need to add unsafe keyword. Remarks THIS is remarks overridden in MARKDWON file Constructors Cat() Default constructor. public Cat() Cat(string, out int, string, bool) It's a complex constructor. The parameter will have some attributes. public Cat(string nickName, out int age, string realName, bool isHealthy) Parameters nickName string it's string type. age int It's an out and ref parameter. realName string It's an out paramter. isHealthy bool It's an in parameter. Cat(T) Constructor with one generic parameter. public Cat(T ownType) Parameters ownType T This parameter type defined by class. Fields isHealthy Field with attribute. [ContextStatic] [NonSerialized] [Obsolete] public bool isHealthy Field Value bool Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class Properties Age Hint cat's age. [Obsolete] protected int Age { get; set; } Property Value int Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class this[string] This is index property of Cat. You can see that the visibility is different between get and set method. public int this[string a] { protected get; set; } Parameters a string Cat's name. Property Value int Cat's number. Name EII property. public string Name { get; } Property Value string Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class Methods Override CalculateFood Name It's an overridden summary in markdown format This is overriding methods. You can override parameter descriptions for methods, you can even add exceptions to methods. Check the intermediate obj folder to see the data model of the generated method/class. Override Yaml header should follow the data structure. public Dictionary> CalculateFood(DateTime date) Parameters date DateTime This is overridden description for a parameter. id must be specified. Returns Dictionary> It's overridden description for return. type must be specified. Exceptions ArgumentException This is an overridden argument exception. you can add additional exception by adding different exception type. Equals(object) Override the method of Object.Equals(object obj). public override bool Equals(object obj) Parameters obj object Can pass any class type. Returns bool The return value tell you whehter the compare operation is successful. GetTailLength(int*, params object[]) It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword. public long GetTailLength(int* catName, params object[] parameters) Parameters catName int* Thie represent for cat name length. parameters object[] Optional parameters. Returns long Return cat tail's length. Jump(T, K, ref bool) This method have attribute above it. [Conditional(\"Debug\")] public void Jump(T ownType, K anotherOwnType, ref bool cheat) Parameters ownType T Type come from class define. anotherOwnType K Type come from class define. cheat bool Hint whether this cat has cheat mode. Exceptions ArgumentException This is an argument exception Events ownEat Eat event of this cat [Obsolete(\"This _event handler_ is deprecated.\")] public event EventHandler ownEat Event Type EventHandler Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class Operators operator +(Cat, int) Addition operator of this class. public static int operator +(Cat lsr, int rsr) Parameters lsr Cat .. rsr int ~~ Returns int Result with int type. explicit operator Tom(Cat) Expilicit operator of this class. It means this cat can evolve to change to Tom. Tom and Jerry. public static explicit operator Tom(Cat src) Parameters src Cat Instance of this class. Returns Tom Advanced class type of cat. operator -(Cat, int) Similar with operaotr +, refer to that topic. public static int operator -(Cat lsr, int rsr) Parameters lsr Cat Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class rsr int Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class Returns int Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class" }, "api/CatLibrary.CatException-1.html": { "href": "api/CatLibrary.CatException-1.html", @@ -192,7 +192,7 @@ "api/CatLibrary.Core.ContainersRefType.html": { "href": "api/CatLibrary.Core.ContainersRefType.html", "title": "Struct ContainersRefType | docfx seed website", - "keywords": "Struct ContainersRefType Namespace CatLibrary.Core Assembly CatLibrary.Core.dll Struct ContainersRefType public struct ContainersRefType Inherited Members ValueType.Equals(object) ValueType.GetHashCode() ValueType.ToString() object.Equals(object, object) object.GetType() object.ReferenceEquals(object, object) Extension Methods Issue231.Bar(ContainersRefType) Issue231.Foo(ContainersRefType) Fields ColorCount ColorCount public long ColorCount Field Value long Properties GetColorCount GetColorCount public long GetColorCount { get; } Property Value long Methods ContainersRefTypeNonRefMethod(params object[]) ContainersRefTypeNonRefMethod array public static int ContainersRefTypeNonRefMethod(params object[] parmsArray) Parameters parmsArray object[] Returns int Events ContainersRefTypeEventHandler public event EventHandler ContainersRefTypeEventHandler Event Type EventHandler" + "keywords": "Struct ContainersRefType Namespace CatLibrary.Core Assembly CatLibrary.Core.dll Struct ContainersRefType public struct ContainersRefType Inherited Members ValueType.Equals(object) ValueType.GetHashCode() ValueType.ToString() object.Equals(object, object) object.GetType() object.ReferenceEquals(object, object) Extension Methods Issue231.Bar(ContainersRefType) Issue231.Foo(ContainersRefType) Fields ColorCount ColorCount public long ColorCount Field Value long Struct ContainersRefType Properties GetColorCount GetColorCount public long GetColorCount { get; } Property Value long Struct ContainersRefType Methods ContainersRefTypeNonRefMethod(params object[]) ContainersRefTypeNonRefMethod array public static int ContainersRefTypeNonRefMethod(params object[] parmsArray) Parameters parmsArray object[] Struct ContainersRefType Returns int Struct ContainersRefType Events ContainersRefTypeEventHandler public event EventHandler ContainersRefTypeEventHandler Event Type EventHandler Struct ContainersRefType" }, "api/CatLibrary.Core.ExplicitLayoutClass.html": { "href": "api/CatLibrary.Core.ExplicitLayoutClass.html", @@ -217,12 +217,12 @@ "api/CatLibrary.IAnimal.html": { "href": "api/CatLibrary.IAnimal.html", "title": "Interface IAnimal | docfx seed website", - "keywords": "Interface IAnimal Namespace CatLibrary Assembly CatLibrary.dll This is basic interface of all animal. Welcome to the Animal world! public interface IAnimal Remarks THIS is remarks overridden in MARKDWON file Properties this[int] Return specific number animal's name. string this[int index] { get; } Parameters index int Animal number. Property Value string Animal name. Name Name of Animal. string Name { get; } Property Value string Methods Eat() Animal's eat method. void Eat() Eat(string) Feed the animal with some food void Eat(string food) Parameters food string Food to eat Eat(Tool) Overload method of eat. This define the animal eat by which tool. void Eat(Tool tool) where Tool : class Parameters tool Tool Tool name. Type Parameters Tool It's a class type." + "keywords": "Interface IAnimal Namespace CatLibrary Assembly CatLibrary.dll This is basic interface of all animal. Welcome to the Animal world! public interface IAnimal Remarks THIS is remarks overridden in MARKDWON file Properties this[int] Return specific number animal's name. string this[int index] { get; } Parameters index int Animal number. Property Value string Animal name. Name Name of Animal. string Name { get; } Property Value string This is basic interface of all animal. Methods Eat() Animal's eat method. void Eat() Eat(string) Feed the animal with some food void Eat(string food) Parameters food string Food to eat Eat(Tool) Overload method of eat. This define the animal eat by which tool. void Eat(Tool tool) where Tool : class Parameters tool Tool Tool name. Type Parameters Tool It's a class type." }, "api/CatLibrary.ICat.html": { "href": "api/CatLibrary.ICat.html", "title": "Interface ICat | docfx seed website", - "keywords": "Interface ICat Namespace CatLibrary Assembly CatLibrary.dll Cat's interface public interface ICat : IAnimal Inherited Members IAnimal.Name IAnimal.this[int] IAnimal.Eat() IAnimal.Eat(Tool) IAnimal.Eat(string) Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Events eat eat event of cat. Every cat must implement this event. event EventHandler eat Event Type EventHandler" + "keywords": "Interface ICat Namespace CatLibrary Assembly CatLibrary.dll Cat's interface public interface ICat : IAnimal Inherited Members IAnimal.Name IAnimal.this[int] IAnimal.Eat() IAnimal.Eat(Tool) IAnimal.Eat(string) Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Events eat eat event of cat. Every cat must implement this event. event EventHandler eat Event Type EventHandler Cat's interface" }, "api/CatLibrary.ICatExtension.html": { "href": "api/CatLibrary.ICatExtension.html", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/pdf/toc.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/pdf/toc.pdf.verified.json index e4ed31375e9..e91e81ef838 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/pdf/toc.pdf.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed.Windows/pdf/toc.pdf.verified.json @@ -1,5 +1,5 @@ { - "NumberOfPages": 123, + "NumberOfPages": 126, "Pages": [ { "Number": 1, @@ -309,7 +309,7 @@ }, { "Number": 2, - "Text": "BaseClass160Class161CatLibrary63Core65ContainersRefType66ContainersRefType.ColorType68ContainersRefType.ContainersRefTypeChild69ContainersRefType.ContainersRefTypeChildInterface70ContainersRefType.ContainersRefTypeDelegate71ExplicitLayoutClass72Issue23173CatException74Cat75Complex84FakeDelegate85IAnimal86ICat89ICatExtension90MRefDelegate92MRefNormalDelegate93Tom94TomFromBaseClass96MRef.Demo.Enumeration97ColorType98REST APIPet Store API99Contacts API114", + "Text": "BaseClass160Class161CatLibrary64Core66ContainersRefType67ContainersRefType.ColorType70ContainersRefType.ContainersRefTypeChild71ContainersRefType.ContainersRefTypeChildInterface72ContainersRefType.ContainersRefTypeDelegate73ExplicitLayoutClass74Issue23175CatException76Cat77Complex87FakeDelegate88IAnimal89ICat92ICatExtension93MRefDelegate95MRefNormalDelegate96Tom97TomFromBaseClass99MRef.Demo.Enumeration100ColorType101REST APIPet Store API102Contacts API117", "Links": [ { "Goto": { @@ -331,7 +331,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -340,7 +340,7 @@ }, { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -349,7 +349,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -358,7 +358,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 70, "Type": 2, "Coordinates": { "Top": 0 @@ -367,7 +367,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -376,7 +376,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -385,7 +385,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -394,7 +394,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -403,7 +403,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Type": 2, "Coordinates": { "Top": 0 @@ -412,7 +412,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -421,7 +421,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -430,7 +430,7 @@ }, { "Goto": { - "PageNumber": 84, + "PageNumber": 87, "Type": 2, "Coordinates": { "Top": 0 @@ -439,7 +439,7 @@ }, { "Goto": { - "PageNumber": 85, + "PageNumber": 88, "Type": 2, "Coordinates": { "Top": 0 @@ -448,7 +448,7 @@ }, { "Goto": { - "PageNumber": 86, + "PageNumber": 89, "Type": 2, "Coordinates": { "Top": 0 @@ -457,7 +457,7 @@ }, { "Goto": { - "PageNumber": 89, + "PageNumber": 92, "Type": 2, "Coordinates": { "Top": 0 @@ -466,7 +466,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -475,7 +475,7 @@ }, { "Goto": { - "PageNumber": 92, + "PageNumber": 95, "Type": 2, "Coordinates": { "Top": 0 @@ -484,7 +484,7 @@ }, { "Goto": { - "PageNumber": 93, + "PageNumber": 96, "Type": 2, "Coordinates": { "Top": 0 @@ -493,7 +493,7 @@ }, { "Goto": { - "PageNumber": 94, + "PageNumber": 97, "Type": 2, "Coordinates": { "Top": 0 @@ -502,7 +502,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -511,7 +511,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -520,7 +520,7 @@ }, { "Goto": { - "PageNumber": 98, + "PageNumber": 101, "Type": 2, "Coordinates": { "Top": 0 @@ -529,7 +529,7 @@ }, { "Goto": { - "PageNumber": 99, + "PageNumber": 102, "Type": 2, "Coordinates": { "Top": 0 @@ -538,7 +538,7 @@ }, { "Goto": { - "PageNumber": 114, + "PageNumber": 117, "Type": 2, "Coordinates": { "Top": 0 @@ -550,7 +550,7 @@ { "Number": 3, "NumberOfImages": 1, - "Text": "3 / 123Getting Started with docfxGetting StartedThis is a seed.", + "Text": "3 / 126Getting Started with docfxGetting StartedThis is a seed.", "Links": [ { "Uri": "" @@ -562,22 +562,22 @@ }, { "Number": 4, - "Text": "4 / 123docfx is an API documentation generator for .NET, currently support C# and VB. It has the ability toextract triple slash comments out from your source code. What's more, it has syntax to link additionalfiles to API to add additional remarks. docfx will scan your source code and your additional conceptualfiles and generate a complete HTML documentation website for you. docfx provides the flexibility foryou to customize the website through templates. We currently have several embedded templates,including websites containing pure static html pages and also website managed by AngularJS.Click \"View Source\" for an API to route to the source code in GitHub (your API must be pushed toGitHub)docfx provide DNX version for cross platform use.docfx can be used within Visual Studio seamlessly. NOTE offical docfx.msbuild nuget package isnow in pre-release version. You can also build your own with source code and use it locally.We support Docfx Flavored Markdown(DFM) for writing conceptual files. DFM is 100%compatible with Github Flavored Markdown(GFM) and add several new features including fileinclusion, cross reference, and yaml header.", + "Text": "4 / 126docfx is an API documentation generator for .NET, currently support C# and VB. It has the ability toextract triple slash comments out from your source code. What's more, it has syntax to link additionalfiles to API to add additional remarks. docfx will scan your source code and your additional conceptualfiles and generate a complete HTML documentation website for you. docfx provides the flexibility foryou to customize the website through templates. We currently have several embedded templates,including websites containing pure static html pages and also website managed by AngularJS.Click \"View Source\" for an API to route to the source code in GitHub (your API must be pushed toGitHub)docfx provide DNX version for cross platform use.docfx can be used within Visual Studio seamlessly. NOTE offical docfx.msbuild nuget package isnow in pre-release version. You can also build your own with source code and use it locally.We support Docfx Flavored Markdown(DFM) for writing conceptual files. DFM is 100%compatible with Github Flavored Markdown(GFM) and add several new features including fileinclusion, cross reference, and yaml header.", "Links": [] }, { "Number": 5, - "Text": "5 / 123Engineering GuidelinesBasicsCopyright header and license noticeAll source code files require the following exact header according to its language (please do not makeany changes to it).extension: .csextension: .jsextension: .cssextension: .tmpl, .tmpl.partialExternal dependenciesThis refers to dependencies on projects (i.e. NuGet packages) outside of the docfx repo, and especiallyoutside of Microsoft. Adding new dependencies require additional approval.Current approved dependencies are:Newtonsoft.JsonJintHtmlAgilityPack// Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT license.// Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT license./** * Licensed to the .NET Foundation under one or more agreements. * The .NET Foundation licenses this file to you under the MIT license. */{{!Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses th", + "Text": "5 / 126Engineering GuidelinesBasicsCopyright header and license noticeAll source code files require the following exact header according to its language (please do not makeany changes to it).extension: .csextension: .jsextension: .cssextension: .tmpl, .tmpl.partialExternal dependenciesThis refers to dependencies on projects (i.e. NuGet packages) outside of the docfx repo, and especiallyoutside of Microsoft. Adding new dependencies require additional approval.Current approved dependencies are:Newtonsoft.JsonJintHtmlAgilityPack// Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT license.// Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT license./** * Licensed to the .NET Foundation under one or more agreements. * The .NET Foundation licenses this file to you under the MIT license. */{{!Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses th", "Links": [] }, { "Number": 6, - "Text": "6 / 123NustacheYamlDotNetCode reviews and checkinsTo help ensure that only the highest quality code makes its way into the project, please submit all yourcode changes to GitHub as PRs. This includes runtime code changes, unit test updates, and deploymentscripts. For example, sending a PR for just an update to a unit test might seem like a waste of time butthe unit tests are just as important as the product code and as such, reviewing changes to them is alsojust as important.The advantages are numerous: improving code quality, more visibility on changes and their potentialimpact, avoiding duplication of effort, and creating general awareness of progress being made in variousareas.In general a PR should be signed off(using the \uD83D\uDC4D emoticon) by the Owner of that code.To commit the PR to the repo do not use the Big Green Button. Instead, do a typical push that youwould use with Git (e.g. local pull, rebase, merge, push).Source Code ManagementBranch strategyIn general:master has the code for the latest release on NuGet.org. (e.g. 1.0.0, 1.1.0)dev has the code that is being worked on but not yet released. This is the branch into which devsnormally submit pull requests and merge changes into. We run daily CI towards dev branch andgenerate pre-release nuget package, e.g. 1.0.1-alpha-9-abcdefsd.hotfix has the code for fixing master bug after it is released. hotfix changes will be merged back tomaster and dev once it is verified.Solution and project folder structure and namingSolution files go in the repo root. The default entry point is All.sln.Every project also needs a project.json and a matching .xproj file. This project.json is the source oftruth for a project's dependencies and configuration options.Solution need to contain solution folders that match the physical folder (src, test, tools, etc.).Assembly naming patternThe general naming pattern is Docfx...", + "Text": "6 / 126NustacheYamlDotNetCode reviews and checkinsTo help ensure that only the highest quality code makes its way into the project, please submit all yourcode changes to GitHub as PRs. This includes runtime code changes, unit test updates, and deploymentscripts. For example, sending a PR for just an update to a unit test might seem like a waste of time butthe unit tests are just as important as the product code and as such, reviewing changes to them is alsojust as important.The advantages are numerous: improving code quality, more visibility on changes and their potentialimpact, avoiding duplication of effort, and creating general awareness of progress being made in variousareas.In general a PR should be signed off(using the \uD83D\uDC4D emoticon) by the Owner of that code.To commit the PR to the repo do not use the Big Green Button. Instead, do a typical push that youwould use with Git (e.g. local pull, rebase, merge, push).Source Code ManagementBranch strategyIn general:master has the code for the latest release on NuGet.org. (e.g. 1.0.0, 1.1.0)dev has the code that is being worked on but not yet released. This is the branch into which devsnormally submit pull requests and merge changes into. We run daily CI towards dev branch andgenerate pre-release nuget package, e.g. 1.0.1-alpha-9-abcdefsd.hotfix has the code for fixing master bug after it is released. hotfix changes will be merged back tomaster and dev once it is verified.Solution and project folder structure and namingSolution files go in the repo root. The default entry point is All.sln.Every project also needs a project.json and a matching .xproj file. This project.json is the source oftruth for a project's dependencies and configuration options.Solution need to contain solution folders that match the physical folder (src, test, tools, etc.).Assembly naming patternThe general naming pattern is Docfx...", "Links": [] }, { "Number": 7, - "Text": "7 / 123Unit testsWe use xUnit.net for all unit testing.Coding StandardsPlease refer to C# Coding standards for detailed guideline for C# coding standards.TODO Template Coding standardsTODO Template Preprocess JS Coding standards", + "Text": "7 / 126Unit testsWe use xUnit.net for all unit testing.Coding StandardsPlease refer to C# Coding standards for detailed guideline for C# coding standards.TODO Template Coding standardsTODO Template Preprocess JS Coding standards", "Links": [ { "Goto": { @@ -592,7 +592,7 @@ }, { "Number": 8, - "Text": "8 / 123C# Coding StandardsIntroductionThe coding standard will be used in conjunction with customized version of StyleCop and FxCop [TODO]during both development and build process. This will help ensure that the standard is followed by alldevelopers on the team in a consistent manner.\"Any fool can write code that a computer can understand. Good programmers write code thathumans understand\".Martin Fowler. Refactoring: Improving the design of existing code.PurposeThe aim of this section is to define a set of C# coding standards to be used by CAPS build team toguarantee maximum legibility, reliability, re-usability and homogeneity of our code. Each section ismarked Mandatory or Recommended. Mandatory sections, will be enforced during code reviews as wellas tools like StyleCop and FxCop, and code will not be considered complete until it is compliant.ScopeThis section contains general C# coding standards which can be applied to any type of applicationdeveloped in C#, based on Framework Design Guidelines\uF1C5.It does not pretend to be a tutorial on C#. It only includes a set of limitations and recommendationsfocused on clarifying the development.ToolsResharper\uF1C5 is a great 3rd party code cleanup and style tool.StyleCop\uF1C5 analyzes C# srouce code to enforce a set of style and consistency rules and has beenintegrated into many 3rd party development tools such as Resharper.FxCop\uF1C5 is an application that analyzes managed code assemblies (code that targets the .NETFramework common language runtime) and reports information about the assemblies, such aspossible design, localization, performance, and security improvements.C# Stylizer\uF1C5 does many of the style rules automaticallyHighlights of Coding StandardsThis section is not intended to give a summary of all the coding standards that enabled by ourcustomized StyleCop, but to give a highlight of some rules one will possibly meet in daily coding life. Italso provides some recommended however not mandatory(which means not enabled in StyleCop)coding standards.", + "Text": "8 / 126C# Coding StandardsIntroductionThe coding standard will be used in conjunction with customized version of StyleCop and FxCop [TODO]during both development and build process. This will help ensure that the standard is followed by alldevelopers on the team in a consistent manner.\"Any fool can write code that a computer can understand. Good programmers write code thathumans understand\".Martin Fowler. Refactoring: Improving the design of existing code.PurposeThe aim of this section is to define a set of C# coding standards to be used by CAPS build team toguarantee maximum legibility, reliability, re-usability and homogeneity of our code. Each section ismarked Mandatory or Recommended. Mandatory sections, will be enforced during code reviews as wellas tools like StyleCop and FxCop, and code will not be considered complete until it is compliant.ScopeThis section contains general C# coding standards which can be applied to any type of applicationdeveloped in C#, based on Framework Design Guidelines\uF1C5.It does not pretend to be a tutorial on C#. It only includes a set of limitations and recommendationsfocused on clarifying the development.ToolsResharper\uF1C5 is a great 3rd party code cleanup and style tool.StyleCop\uF1C5 analyzes C# srouce code to enforce a set of style and consistency rules and has beenintegrated into many 3rd party development tools such as Resharper.FxCop\uF1C5 is an application that analyzes managed code assemblies (code that targets the .NETFramework common language runtime) and reports information about the assemblies, such aspossible design, localization, performance, and security improvements.C# Stylizer\uF1C5 does many of the style rules automaticallyHighlights of Coding StandardsThis section is not intended to give a summary of all the coding standards that enabled by ourcustomized StyleCop, but to give a highlight of some rules one will possibly meet in daily coding life. Italso provides some recommended however not mandatory(which means not enabled in StyleCop)coding standards.", "Links": [ { "Uri": "http://msdn.microsoft.com/en-us/library/ms229042.aspx" @@ -643,12 +643,12 @@ }, { "Number": 9, - "Text": "9 / 123File Layout (Recommended)Only one public class is allowed per file.The file name is derived from the class name.Class Definition Order (Mandatory)The class definition contains class members in the following order, from less restricted scope (public) tomore restrictive (private):Nested types, e.g. classes, enum, struct, etc.Field members, e.g. member variables, const, etc.Member functionsConstructorsFinalizer (Do not use unless absolutely necessary)Methods (Properties, Events, Operations, Overridables, Static)Private nested typesNaming (Mandatory)DO use PascalCasing for all public member, type, and namespace names consisting of multiplewords.NOTE: A special case is made for two-letter acronyms in which both letters are capitalized, e.g. IOStreamDO use camelCasing for parameter names.DO start with underscore for private fieldsClass : ObserverFilename: Observer.cs PropertyDescriptor HtmlTag IOStream propertyDescriptor htmlTag ioStream private readonly Guid _userId = Guid.NewGuid();", + "Text": "9 / 126File Layout (Recommended)Only one public class is allowed per file.The file name is derived from the class name.Class Definition Order (Mandatory)The class definition contains class members in the following order, from less restricted scope (public) tomore restrictive (private):Nested types, e.g. classes, enum, struct, etc.Field members, e.g. member variables, const, etc.Member functionsConstructorsFinalizer (Do not use unless absolutely necessary)Methods (Properties, Events, Operations, Overridables, Static)Private nested typesNaming (Mandatory)DO use PascalCasing for all public member, type, and namespace names consisting of multiplewords.NOTE: A special case is made for two-letter acronyms in which both letters are capitalized, e.g. IOStreamDO use camelCasing for parameter names.DO start with underscore for private fieldsClass : ObserverFilename: Observer.cs PropertyDescriptor HtmlTag IOStream propertyDescriptor htmlTag ioStream private readonly Guid _userId = Guid.NewGuid();", "Links": [] }, { "Number": 10, - "Text": "10 / 123DO start static readonly fields, constants with capitalized caseDO NOT capitalize each word in so-called closed-form compound words\uF1C5.DO have \"Async\" explicitly in the Async method name to notice people how to use it properlyFormatting (Mandatory)DO use spaces over tabs, and always show all spaces/tabs in IDETipsVisual Studio > TOOLS > Options > Text Editor > C# > Tabs > Insert spaces (Tab size: 4)Visual Studio > Edit > Advanced > View White SpaceDO add using inside namespace declarationDO add a space when:1. for (var i = 0; i < 1; i++)2. if (a == b)Cross-platform codingOur code should supports multiple operating systems. Don't assume we only run (and develop) onWindows. Code should be sensitvie to the differences between OS's. Here are some specifics to consider.DO use Enviroment.NewLine instead of hard-coding the line break instead of \\r\\n, as Windows uses\\r\\n and OSX/Linux uses \\n.NoteBe aware that thes line-endings may cause problems in code when using @\"\" text blocks with linebreaks. private static readonly IEntityAccessor EntityAccessor = null; private const string MetadataName = \"MetadataName\"; namespace Microsoft.Content.Build.BuildWorker.UnitTest { using System; }", + "Text": "10 / 126DO start static readonly fields, constants with capitalized caseDO NOT capitalize each word in so-called closed-form compound words\uF1C5.DO have \"Async\" explicitly in the Async method name to notice people how to use it properlyFormatting (Mandatory)DO use spaces over tabs, and always show all spaces/tabs in IDETipsVisual Studio > TOOLS > Options > Text Editor > C# > Tabs > Insert spaces (Tab size: 4)Visual Studio > Edit > Advanced > View White SpaceDO add using inside namespace declarationDO add a space when:1. for (var i = 0; i < 1; i++)2. if (a == b)Cross-platform codingOur code should supports multiple operating systems. Don't assume we only run (and develop) onWindows. Code should be sensitvie to the differences between OS's. Here are some specifics to consider.DO use Enviroment.NewLine instead of hard-coding the line break instead of \\r\\n, as Windows uses\\r\\n and OSX/Linux uses \\n.NoteBe aware that thes line-endings may cause problems in code when using @\"\" text blocks with linebreaks. private static readonly IEntityAccessor EntityAccessor = null; private const string MetadataName = \"MetadataName\"; namespace Microsoft.Content.Build.BuildWorker.UnitTest { using System; }", "Links": [ { "Uri": "http://msdn.microsoft.com/en-us/library/ms229043.aspx" @@ -663,22 +663,22 @@ }, { "Number": 11, - "Text": "11 / 123DO Use Path.Combine() or Path.DirectorySeparatorChar to separate directories. If this is notpossible (such as in scripting), use a forward slash /. Windows is more forgiving than Linux in thisregard.Unit tests and functional testsAssembly namingThe unit tests for the Microsoft.Foo assembly live in the Microsoft.Foo.Tests assembly.The functional tests for the Microsoft.Foo assmebly live in the Microsoft.Foo.FunctionalTests assmebly.In general there should be exactly one unit test assebmly for each product runtime assembly. In generalthere should be one functional test assembly per repo. Exceptions can be made for both.Unit test class namingTest class names end with Test and live in the same namespace as the class being tested. For example,the unit tests for the Microsoft.Foo.Boo class would be in a Microsoft.Foo.Boo class in the test assembly.Unit test method namingUnit test method names must be descriptive about what is being tested, under what conditions, and whatthe expectations are. Pascal casing and underscores can be used to improve readability. The followingtest names are correct:The following test names are incorrect:Unit test structureThe contents of every unit test should be split into three distinct stages, optionally separated by thesecomments:PublicApiArgumentsShouldHaveNotNullAnnotationPublic_api_arguments_should_have_not_null_annotationTest1ConstructorFormatStringGetData// Arrange// Act// Assert", + "Text": "11 / 126DO Use Path.Combine() or Path.DirectorySeparatorChar to separate directories. If this is notpossible (such as in scripting), use a forward slash /. Windows is more forgiving than Linux in thisregard.Unit tests and functional testsAssembly namingThe unit tests for the Microsoft.Foo assembly live in the Microsoft.Foo.Tests assembly.The functional tests for the Microsoft.Foo assmebly live in the Microsoft.Foo.FunctionalTests assmebly.In general there should be exactly one unit test assebmly for each product runtime assembly. In generalthere should be one functional test assembly per repo. Exceptions can be made for both.Unit test class namingTest class names end with Test and live in the same namespace as the class being tested. For example,the unit tests for the Microsoft.Foo.Boo class would be in a Microsoft.Foo.Boo class in the test assembly.Unit test method namingUnit test method names must be descriptive about what is being tested, under what conditions, and whatthe expectations are. Pascal casing and underscores can be used to improve readability. The followingtest names are correct:The following test names are incorrect:Unit test structureThe contents of every unit test should be split into three distinct stages, optionally separated by thesecomments:PublicApiArgumentsShouldHaveNotNullAnnotationPublic_api_arguments_should_have_not_null_annotationTest1ConstructorFormatStringGetData// Arrange// Act// Assert", "Links": [] }, { "Number": 12, - "Text": "12 / 123The crucial thing here is the Act stage is exactly one statement. That one statement is nothing more thana call to the one method that you are trying to test. keeping that one statement as simple as possible isalso very important. For example, this is not ideal:This style is not recomended because way too many things can go wrong in this one statement. All theGetComplexParamN() calls can throw for a variety of reasons unrelated to the test itself. It is thus unclearto someone running into a problem why the failure occured.The ideal pattern is to move the complex parameter building into the `Arrange section:Now the only reason the line with CallSomeMethod() can fail is if the method itself blew up.Testing exception messagesIn general testing the specific exception message in a unit test is important. This ensures that the exactdesired exception is what is being tested rather than a different exception of the same type. In order toverify the exact exception it is important to verify the message.Use xUnit.net's plethora of built-in assertionsxUnit.net includes many kinds of assertions – please use the most appropriate one for your test. This willmake the tests a lot more readable and also allow the test runner report the best possible errors(whether it's local or the CI machine). For example, these are bad:int result = myObj.CallSomeMethod(GetComplexParam1(), GetComplexParam2(), GetComplexParam3());// ArrangeP1 p1 = GetComplexParam1();P2 p2 = GetComplexParam2();P3 p3 = GetComplexParam3();// Actint result = myObj.CallSomeMethod(p1, p2, p3);// AssertAssert.AreEqual(1234, result);var ex = Assert.Throws( () => fruitBasket.GetBananaById(1234));Assert.Equal( \"1234\", ex.Message);", + "Text": "12 / 126The crucial thing here is the Act stage is exactly one statement. That one statement is nothing more thana call to the one method that you are trying to test. keeping that one statement as simple as possible isalso very important. For example, this is not ideal:This style is not recomended because way too many things can go wrong in this one statement. All theGetComplexParamN() calls can throw for a variety of reasons unrelated to the test itself. It is thus unclearto someone running into a problem why the failure occured.The ideal pattern is to move the complex parameter building into the `Arrange section:Now the only reason the line with CallSomeMethod() can fail is if the method itself blew up.Testing exception messagesIn general testing the specific exception message in a unit test is important. This ensures that the exactdesired exception is what is being tested rather than a different exception of the same type. In order toverify the exact exception it is important to verify the message.Use xUnit.net's plethora of built-in assertionsxUnit.net includes many kinds of assertions – please use the most appropriate one for your test. This willmake the tests a lot more readable and also allow the test runner report the best possible errors(whether it's local or the CI machine). For example, these are bad:int result = myObj.CallSomeMethod(GetComplexParam1(), GetComplexParam2(), GetComplexParam3());// ArrangeP1 p1 = GetComplexParam1();P2 p2 = GetComplexParam2();P3 p3 = GetComplexParam3();// Actint result = myObj.CallSomeMethod(p1, p2, p3);// AssertAssert.AreEqual(1234, result);var ex = Assert.Throws( () => fruitBasket.GetBananaById(1234));Assert.Equal( \"1234\", ex.Message);", "Links": [] }, { "Number": 13, - "Text": "13 / 123These are good:Parallel testsBy default all unit test assemblies should run in parallel mode, which is the default. Unit tests shouldn'tdepend on any shared state, and so should generally be runnable in parallel. If the tests fail in parallel,the first thing to do is to figure out why; do not just disable parallel tests!For functional tests it is reasonable to disable parallel tests.Assert.Equal(true, someBool);Assert.True(\"abc123\" == someString);Assert.True(list1.Length == list2.Length);for (int i = 0; i < list1.Length; i++) { Assert.True( String.Equals list1[i], list2[i], StringComparison.OrdinalIgnoreCase));}Assert.True(someBool);Assert.Equal(\"abc123\", someString);// built-in collection assertions!Assert.Equal(list1, list2, StringComparer.OrdinalIgnoreCase);", + "Text": "13 / 126These are good:Parallel testsBy default all unit test assemblies should run in parallel mode, which is the default. Unit tests shouldn'tdepend on any shared state, and so should generally be runnable in parallel. If the tests fail in parallel,the first thing to do is to figure out why; do not just disable parallel tests!For functional tests it is reasonable to disable parallel tests.Assert.Equal(true, someBool);Assert.True(\"abc123\" == someString);Assert.True(list1.Length == list2.Length);for (int i = 0; i < list1.Length; i++) { Assert.True( String.Equals list1[i], list2[i], StringComparison.OrdinalIgnoreCase));}Assert.True(someBool);Assert.Equal(\"abc123\", someString);// built-in collection assertions!Assert.Equal(list1, list2, StringComparer.OrdinalIgnoreCase);", "Links": [] }, { "Number": 14, - "Text": "14 / 123MarkdownMarkdown\uF1C5 is a lightweight markup language with plain text formatting syntax. Docfx supportsCommonMark\uF1C5 compliant Markdown parsed through the Markdig\uF1C5 parsing engine.Link to Math ExpressionsBlock QuotesThis is a block quote.AlertsNOTEInformation the user should notice even if skimming.\uF431TIPOptional information to help a user be more successful.\uF431IMPORTANTEssential information required for user success.\uF623CAUTIONNegative potential consequences of an action.\uF623WARNINGDangerous certain consequences of an action.\uF333", + "Text": "14 / 126MarkdownMarkdown\uF1C5 is a lightweight markup language with plain text formatting syntax. Docfx supportsCommonMark\uF1C5 compliant Markdown parsed through the Markdig\uF1C5 parsing engine.Link to Math ExpressionsBlock QuotesThis is a block quote.AlertsNOTEInformation the user should notice even if skimming.\uF431TIPOptional information to help a user be more successful.\uF431IMPORTANTEssential information required for user success.\uF623CAUTIONNegative potential consequences of an action.\uF623WARNINGDangerous certain consequences of an action.\uF333", "Links": [ { "Uri": "https://daringfireball.net/projects/markdown/" @@ -721,7 +721,7 @@ { "Number": 15, "NumberOfImages": 1, - "Text": "15 / 123ImageMermaid DiagramsFlowchartCode SnippetThe example highlights lines 2, line 5 to 7 and lines 9 to the end of the file.MY TODOThis is a TODO.TextOneTwoHardRoundDecisionResult 1Result 2", + "Text": "15 / 126ImageMermaid DiagramsFlowchartCode SnippetThe example highlights lines 2, line 5 to 7 and lines 9 to the end of the file.MY TODOThis is a TODO.TextOneTwoHardRoundDecisionResult 1Result 2", "Links": [ { "Uri": "https://learn.microsoft.com/en-us/media/learn/not-found/learn-not-found-light-mode.png?branch=main" @@ -733,12 +733,12 @@ }, { "Number": 16, - "Text": "16 / 123Math ExpressionsThis sentence uses $ delimiters to show math inline: The Cauchy-Schwarz InequalityThis expression uses \\$ to display a dollar sign: To split $100 in half, we calculate using System;using Azure;using Azure.Storage;using Azure.Storage.Blobs;class Program{ static void Main(string[] args) { // Define the connection string for the storage account string connectionString = \"DefaultEndpointsProtocol=https;AccountName=;AccountKey=;EndpointSuffix=core.windows.net\"; // Create a new BlobServiceClient using the connection string var blobServiceClient = new BlobServiceClient(connectionString); // Create a new container var container = blobServiceClient.CreateBlobContainer(\"mycontainer\"); // Upload a file to the container using (var fileStream = File.OpenRead(\"path/to/file.txt\")) { container.UploadBlob(\"file.txt\", fileStream); } // Download the file from the container var downloadedBlob = container.GetBlobClient(\"file.txt\").Download(); using (var fileStream = File.OpenWrite(\"path/to/downloaded-file.txt\")) { downloadedBlob.Value.Content.CopyTo(fileStream); } }}", + "Text": "16 / 126Math ExpressionsThis sentence uses $ delimiters to show math inline: The Cauchy-Schwarz InequalityThis expression uses \\$ to display a dollar sign: To split $100 in half, we calculate using System;using Azure;using Azure.Storage;using Azure.Storage.Blobs;class Program{ static void Main(string[] args) { // Define the connection string for the storage account string connectionString = \"DefaultEndpointsProtocol=https;AccountName=;AccountKey=;EndpointSuffix=core.windows.net\"; // Create a new BlobServiceClient using the connection string var blobServiceClient = new BlobServiceClient(connectionString); // Create a new container var container = blobServiceClient.CreateBlobContainer(\"mycontainer\"); // Upload a file to the container using (var fileStream = File.OpenRead(\"path/to/file.txt\")) { container.UploadBlob(\"file.txt\", fileStream); } // Download the file from the container var downloadedBlob = container.GetBlobClient(\"file.txt\").Download(); using (var fileStream = File.OpenWrite(\"path/to/downloaded-file.txt\")) { downloadedBlob.Value.Content.CopyTo(fileStream); } }}", "Links": [] }, { "Number": 17, - "Text": "17 / 123Custom Syntax HighlightingTabsLinuxWindowsThe above tab group was created with the following syntax:Tabs are indicated by using a specific link syntax within a Markdown header. The syntax can be describedas follows:A tab starts with a Markdown header, #, and is followed by a Markdown link [](). The text of the link willbecome the text of the tab header, displayed to the customer. In order for the header to be recognizedas a tab, the link itself must start with #tab/ and be followed by an ID representing the content of thetab. The ID is used to sync all same-ID tabs across the page. Using the above example, when a userselects a tab with the link #tab/windows, all tabs with the link #tab/windows on the page will be selected.Dependent tabsIt's possible to make the selection in one set of tabs dependent on the selection in another set of tabs.Here's an example of that in action:resource storageAccount 'Microsoft.Storage/storageAccounts@2021-06-01' = { name: 'hello' // (...)}Content for Linux...# [Linux](#tab/linux)Content for Linux...# [Windows](#tab/windows)Content for Windows...---# [Tab Display Name](#tab/tab-id)", + "Text": "17 / 126Custom Syntax HighlightingTabsLinuxWindowsThe above tab group was created with the following syntax:Tabs are indicated by using a specific link syntax within a Markdown header. The syntax can be describedas follows:A tab starts with a Markdown header, #, and is followed by a Markdown link [](). The text of the link willbecome the text of the tab header, displayed to the customer. In order for the header to be recognizedas a tab, the link itself must start with #tab/ and be followed by an ID representing the content of thetab. The ID is used to sync all same-ID tabs across the page. Using the above example, when a userselects a tab with the link #tab/windows, all tabs with the link #tab/windows on the page will be selected.Dependent tabsIt's possible to make the selection in one set of tabs dependent on the selection in another set of tabs.Here's an example of that in action:resource storageAccount 'Microsoft.Storage/storageAccounts@2021-06-01' = { name: 'hello' // (...)}Content for Linux...# [Linux](#tab/linux)Content for Linux...# [Windows](#tab/windows)Content for Windows...---# [Tab Display Name](#tab/tab-id)", "Links": [ { "Goto": { @@ -753,7 +753,7 @@ }, { "Number": 18, - "Text": "18 / 123.NETTypeScriptREST APINotice how changing the Linux/Windows selection above changes the content in the .NET andTypeScript tabs. This is because the tab group defines two versions for each .NET and TypeScript, wherethe Windows/Linux selection above determines which version is shown for .NET/TypeScript. Here's themarkup that shows how this is done:DetailsDemo.NET content for Linux...# [.NET](#tab/dotnet/linux).NET content for Linux...# [.NET](#tab/dotnet/windows).NET content for Windows...# [TypeScript](#tab/typescript/linux)TypeScript content for Linux...# [TypeScript](#tab/typescript/windows)TypeScript content for Windows...# [REST API](#tab/rest)REST API content, independent of platform...---", + "Text": "18 / 126.NETTypeScriptREST APINotice how changing the Linux/Windows selection above changes the content in the .NET andTypeScript tabs. This is because the tab group defines two versions for each .NET and TypeScript, wherethe Windows/Linux selection above determines which version is shown for .NET/TypeScript. Here's themarkup that shows how this is done:DetailsDemo.NET content for Linux...# [.NET](#tab/dotnet/linux).NET content for Linux...# [.NET](#tab/dotnet/windows).NET content for Windows...# [TypeScript](#tab/typescript/linux)TypeScript content for Linux...# [TypeScript](#tab/typescript/windows)TypeScript content for Windows...# [REST API](#tab/rest)REST API content, independent of platform...---", "Links": [ { "Goto": { @@ -768,7 +768,7 @@ }, { "Number": 19, - "Text": "19 / 123ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", + "Text": "19 / 126ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", "Links": [ { "Goto": { @@ -792,7 +792,7 @@ }, { "Number": 20, - "Text": "20 / 123Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllThis is a test class.Inheritanceobject\uF1C5 Class1Inherited Membersobject.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ToString()\uF1C5 , object.Equals(object)\uF1C5 ,object.Equals(object, object)\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.GetHashCode()\uF1C5ConstructorsMethodsHello World.Class Class1public class Class1\uF12CClass1()public Class1()HelloWorld()public static void HelloWorld()", + "Text": "20 / 126Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllThis is a test class.Inheritanceobject\uF1C5 Class1Inherited Membersobject.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ToString()\uF1C5 , object.Equals(object)\uF1C5 ,object.Equals(object, object)\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.GetHashCode()\uF1C5ConstructorsMethodsHello World.Class Class1public class Class1\uF12CClass1()public Class1()HelloWorld()public static void HelloWorld()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -897,7 +897,7 @@ }, { "Number": 21, - "Text": "21 / 123Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 , object.GetType()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.ReferenceEquals(object, object)\uF1C5PropertiesProperty Valuestring\uF1C5Struct Issue5432public struct Issue5432Namepublic string Name { get; }", + "Text": "21 / 126Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 , object.GetType()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.ReferenceEquals(object, object)\uF1C5PropertiesProperty Valuestring\uF1C5Struct Issue5432public struct Issue5432Namepublic string Name { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -993,7 +993,7 @@ }, { "Number": 22, - "Text": "22 / 123ClassesCSharpNamespace BuildFromCSharpSourceCode", + "Text": "22 / 126ClassesCSharpNamespace BuildFromCSharpSourceCode", "Links": [ { "Goto": { @@ -1008,7 +1008,7 @@ }, { "Number": 23, - "Text": "23 / 123Namespace:BuildFromCSharpSourceCodeInheritanceobject\uF1C5 CSharpInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParametersargs string\uF1C5[]Class CSharppublic class CSharp\uF12CMain(string[])public static void Main(string[] args)", + "Text": "23 / 126Namespace:BuildFromCSharpSourceCodeInheritanceobject\uF1C5 CSharpInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParametersargs string\uF1C5[]Class CSharppublic class CSharp\uF12CMain(string[])public static void Main(string[] args)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1140,7 +1140,7 @@ }, { "Number": 24, - "Text": "24 / 123NamespacesBuildFromProject.Issue8540ClassesClass1Class1.Issue8665Class1.Issue8696AttributeClass1.Issue8948Class1.TestInheritdocInheritdoc.Issue6366Inheritdoc.Issue6366.Class1Inheritdoc.Issue6366.Class2Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Issue8725A nice classStructsInheritdoc.Issue8129InterfacesClass1.IIssue8948IInheritdocEnumsNamespace BuildFromProject", + "Text": "24 / 126NamespacesBuildFromProject.Issue8540ClassesClass1Class1.Issue8665Class1.Issue8696AttributeClass1.Issue8948Class1.TestInheritdocInheritdoc.Issue6366Inheritdoc.Issue6366.Class1Inheritdoc.Issue6366.Class2Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Issue8725A nice classStructsInheritdoc.Issue8129InterfacesClass1.IIssue8948IInheritdocEnumsNamespace BuildFromProject", "Links": [ { "Goto": { @@ -1434,7 +1434,7 @@ }, { "Number": 25, - "Text": "25 / 123Class1.Issue9260", + "Text": "25 / 126Class1.Issue9260", "Links": [ { "Goto": { @@ -1458,7 +1458,7 @@ }, { "Number": 26, - "Text": "26 / 123NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", + "Text": "26 / 126NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", "Links": [ { "Goto": { @@ -1554,7 +1554,7 @@ }, { "Number": 27, - "Text": "27 / 123ClassesANamespace BuildFromProject.Issue8540.A", + "Text": "27 / 126ClassesANamespace BuildFromProject.Issue8540.A", "Links": [ { "Goto": { @@ -1569,7 +1569,7 @@ }, { "Number": 28, - "Text": "28 / 123Namespace:BuildFromProject.Issue8540.AAssembly:BuildFromProject.dllInheritanceobject\uF1C5 AInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Apublic class A\uF12C", + "Text": "28 / 126Namespace:BuildFromProject.Issue8540.AAssembly:BuildFromProject.dllInheritanceobject\uF1C5 AInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Apublic class A\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1692,7 +1692,7 @@ }, { "Number": 29, - "Text": "29 / 123ClassesBNamespace BuildFromProject.Issue8540.B", + "Text": "29 / 126ClassesBNamespace BuildFromProject.Issue8540.B", "Links": [ { "Goto": { @@ -1707,7 +1707,7 @@ }, { "Number": 30, - "Text": "30 / 123Namespace:BuildFromProject.Issue8540.BAssembly:BuildFromProject.dllInheritanceobject\uF1C5 BInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Bpublic class B\uF12C", + "Text": "30 / 126Namespace:BuildFromProject.Issue8540.BAssembly:BuildFromProject.dllInheritanceobject\uF1C5 BInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Bpublic class B\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1830,7 +1830,7 @@ }, { "Number": 31, - "Text": "31 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1ImplementsIClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsPricing models are used to calculate theoretical option values1-Black Scholes2-Black763-Black76Fut4-Equity Tree5-Variance Swap6-Dividend ForecastIConfiguration related helper and extension routines.Class Class1public class Class1 : IClass1\uF12CIssue1651()public void Issue1651()Issue1887()", + "Text": "31 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1ImplementsIClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsPricing models are used to calculate theoretical option values1-Black Scholes2-Black763-Black76Fut4-Equity Tree5-Variance Swap6-Dividend ForecastIConfiguration related helper and extension routines.Class Class1public class Class1 : IClass1\uF12CIssue1651()public void Issue1651()Issue1887()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -1935,12 +1935,12 @@ }, { "Number": 32, - "Text": "32 / 123ExamplesRemarksFor example:Remarkspublic void Issue1887()Issue2623()public void Issue2623()MyClass myClass = new MyClass();void Update(){ myClass.Execute();}MyClass myClass = new MyClass();void Update(){ myClass.Execute();}Issue2723()public void Issue2723()NOTEThis is a . & \" '\uF431", + "Text": "32 / 126ExamplesRemarksFor example:Remarkspublic void Issue1887()Issue2623()public void Issue2623()MyClass myClass = new MyClass();void Update(){ myClass.Execute();}MyClass myClass = new MyClass();void Update(){ myClass.Execute();}Issue2723()public void Issue2723()NOTEThis is a . & \" '\uF431", "Links": [] }, { "Number": 33, - "Text": "33 / 123Inline .link\uF1C5ExamplesRemarksfor (var i = 0; i > 10; i++) // & \" 'var range = new Range { Min = 0, Max = 10 };var range = new Range { Min = 0, Max = 10 };Issue4017()public void Issue4017()public void HookMessageDeleted(BaseSocketClient client){ client.MessageDeleted += HandleMessageDelete;}public Task HandleMessageDelete(Cacheable cachedMessage, ISocketMessageChannel channel){ // check if the message exists in cache; if not, we cannot report what was removed if (!cachedMessage.HasValue) return; var message = cachedMessage.Value; Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\" + Environment.NewLine + message.Content); return Task.CompletedTask;}void Update(){ myClass.Execute();}", + "Text": "33 / 126Inline .link\uF1C5ExamplesRemarksfor (var i = 0; i > 10; i++) // & \" 'var range = new Range { Min = 0, Max = 10 };var range = new Range { Min = 0, Max = 10 };Issue4017()public void Issue4017()public void HookMessageDeleted(BaseSocketClient client){ client.MessageDeleted += HandleMessageDelete;}public Task HandleMessageDelete(Cacheable cachedMessage, ISocketMessageChannel channel){ // check if the message exists in cache; if not, we cannot report what was removed if (!cachedMessage.HasValue) return; var message = cachedMessage.Value; Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\" + Environment.NewLine + message.Content); return Task.CompletedTask;}void Update(){ myClass.Execute();}", "Links": [ { "Uri": "https://www.github.com/" @@ -1955,12 +1955,12 @@ }, { "Number": 34, - "Text": "34 / 123Remarks@\"\\\\?\\\" @\"\\\\?\\\"RemarksThere's really no reason to not believe that this class can test things.TermDescriptionA TermA DescriptionBee TermBee DescriptionType ParametersTTestIssue4392()public void Issue4392()Issue7484()public void Issue7484()Issue8764()public void Issue8764() where T : unmanagedIssue896()public void Issue896()", + "Text": "34 / 126Remarks@\"\\\\?\\\" @\"\\\\?\\\"RemarksThere's really no reason to not believe that this class can test things.TermDescriptionA TermA DescriptionBee TermBee DescriptionType ParametersTTestIssue4392()public void Issue4392()Issue7484()public void Issue7484()Issue8764()public void Issue8764() where T : unmanagedIssue896()public void Issue896()", "Links": [] }, { "Number": 35, - "Text": "35 / 123See AlsoClass1.Test, Class1Calculates the determinant of a 3-dimensional matrix:Returns the smallest value:Returnsdouble\uF1C5This method should do something...RemarksThis is remarks.Issue9216()public static double Issue9216()XmlCommentIncludeTag()public void XmlCommentIncludeTag()", + "Text": "35 / 126See AlsoClass1.Test, Class1Calculates the determinant of a 3-dimensional matrix:Returns the smallest value:Returnsdouble\uF1C5This method should do something...RemarksThis is remarks.Issue9216()public static double Issue9216()XmlCommentIncludeTag()public void XmlCommentIncludeTag()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.double" @@ -2002,7 +2002,7 @@ }, { "Number": 36, - "Text": "36 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948public interface Class1.IIssue8948DoNothing()void DoNothing()", + "Text": "36 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948public interface Class1.IIssue8948DoNothing()void DoNothing()", "Links": [ { "Goto": { @@ -2035,7 +2035,7 @@ }, { "Number": 37, - "Text": "37 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8665Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsParametersfoo int\uF1C5ParametersClass Class1.Issue8665public class Class1.Issue8665\uF12CIssue8665()public Issue8665()Issue8665(int)public Issue8665(int foo)Issue8665(int, char)public Issue8665(int foo, char bar)", + "Text": "37 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8665Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsParametersfoo int\uF1C5ParametersClass Class1.Issue8665public class Class1.Issue8665\uF12CIssue8665()public Issue8665()Issue8665(int)public Issue8665(int foo)Issue8665(int, char)public Issue8665(int foo, char bar)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2149,7 +2149,7 @@ }, { "Number": 38, - "Text": "38 / 123foo int\uF1C5bar char\uF1C5Parametersfoo int\uF1C5bar char\uF1C5baz string\uF1C5PropertiesProperty Valuechar\uF1C5Property Valuestring\uF1C5Issue8665(int, char, string)public Issue8665(int foo, char bar, string baz)Barpublic char Bar { get; }Bazpublic string Baz { get; }", + "Text": "38 / 126foo int\uF1C5bar char\uF1C5Parametersfoo int\uF1C5bar char\uF1C5baz string\uF1C5PropertiesProperty Valuechar\uF1C5Property Valuestring\uF1C5Issue8665(int, char, string)public Issue8665(int foo, char bar, string baz)Barpublic char Bar { get; }Bazpublic string Baz { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -2218,7 +2218,7 @@ }, { "Number": 39, - "Text": "39 / 123Property Valueint\uF1C5Foopublic int Foo { get; }", + "Text": "39 / 126Property Valueint\uF1C5Foopublic int Foo { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -2233,7 +2233,7 @@ }, { "Number": 40, - "Text": "40 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Attribute\uF1C5 Class1.Issue8696AttributeInherited MembersAttribute.Equals(object)\uF1C5 , Attribute.GetCustomAttribute(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttribute(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type)\uF1C5 , Attribute.GetCustomAttribute(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(Assembly)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, bool)\uF1C5 , Attribute.GetCustomAttributes(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(MemberInfo)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(Module)\uF1C5 ,Attribute.GetCustomAttributes(Module, bool)\uF1C5 , Attribute.GetCustomAttributes(Module, Type)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(ParameterInfo)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetHashCode()\uF1C5 ,Attribute.IsDefaultAttribute()\uF1C5 , Attribute.IsDefined(Assembly, Type)\uF1C5 ,Attribute.IsDefined(Assembly, Type, bool)\uF1C5 , Attribute.IsDefined(MemberInfo, Type)\uF1C5 ,Attribute.IsDefined(MemberInfo, Type, bool)\uF1C5 , Attribute.IsDefined(Module, Type)\uF1C5 ,Attribute.IsDefined(Module, Type, bool)\uF1C5 , Attribute.IsDefined(ParameterInfo, Type)\uF1C5 ,Attribute.IsDefined(ParameterInfo, Type, bool)\uF1C5 , Attribute.Match(object)\uF1C5 , Attribute.TypeId\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsClass Class1.Issue8696Attributepublic class Class1.Issue8696Attribute : Attribute\uF12C\uF12C", + "Text": "40 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Attribute\uF1C5 Class1.Issue8696AttributeInherited MembersAttribute.Equals(object)\uF1C5 , Attribute.GetCustomAttribute(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttribute(Assembly, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(MemberInfo, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(Module, Type)\uF1C5 , Attribute.GetCustomAttribute(Module, Type, bool)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttribute(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(Assembly)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, bool)\uF1C5 , Attribute.GetCustomAttributes(Assembly, Type)\uF1C5 ,Attribute.GetCustomAttributes(Assembly, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(MemberInfo)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(MemberInfo, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(Module)\uF1C5 ,Attribute.GetCustomAttributes(Module, bool)\uF1C5 , Attribute.GetCustomAttributes(Module, Type)\uF1C5 ,Attribute.GetCustomAttributes(Module, Type, bool)\uF1C5 , Attribute.GetCustomAttributes(ParameterInfo)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, bool)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type)\uF1C5 ,Attribute.GetCustomAttributes(ParameterInfo, Type, bool)\uF1C5 , Attribute.GetHashCode()\uF1C5 ,Attribute.IsDefaultAttribute()\uF1C5 , Attribute.IsDefined(Assembly, Type)\uF1C5 ,Attribute.IsDefined(Assembly, Type, bool)\uF1C5 , Attribute.IsDefined(MemberInfo, Type)\uF1C5 ,Attribute.IsDefined(MemberInfo, Type, bool)\uF1C5 , Attribute.IsDefined(Module, Type)\uF1C5 ,Attribute.IsDefined(Module, Type, bool)\uF1C5 , Attribute.IsDefined(ParameterInfo, Type)\uF1C5 ,Attribute.IsDefined(ParameterInfo, Type, bool)\uF1C5 , Attribute.Match(object)\uF1C5 , Attribute.TypeId\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsClass Class1.Issue8696Attributepublic class Class1.Issue8696Attribute : Attribute\uF12C\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2662,7 +2662,7 @@ }, { "Number": 41, - "Text": "41 / 123Parametersdescription string\uF1C5boundsMin int\uF1C5boundsMax int\uF1C5validGameModes string\uF1C5[]hasMultipleSelections bool\uF1C5enumType Type\uF1C5Issue8696Attribute(string?, int, int, string[]?, bool, Type?)[Class1.Issue8696(\"Changes the name of the server in the server list\", 0, 0, null, false, null)]public Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)", + "Text": "41 / 126Parametersdescription string\uF1C5boundsMin int\uF1C5boundsMax int\uF1C5validGameModes string\uF1C5[]hasMultipleSelections bool\uF1C5enumType Type\uF1C5Issue8696Attribute(string?, int, int, string[]?, bool, Type?)[Class1.Issue8696(\"Changes the name of the server in the server list\", 0, 0, null, false, null)]public Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -2722,7 +2722,7 @@ }, { "Number": 42, - "Text": "42 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8948ImplementsClass1.IIssue8948Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsDoes nothing with generic type T.Type ParametersTA generic type.Class Class1.Issue8948public class Class1.Issue8948 : Class1.IIssue8948\uF12CDoNothing()public void DoNothing()", + "Text": "42 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Class1.Issue8948ImplementsClass1.IIssue8948Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsDoes nothing with generic type T.Type ParametersTA generic type.Class Class1.Issue8948public class Class1.Issue8948 : Class1.IIssue8948\uF12CDoNothing()public void DoNothing()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2845,7 +2845,7 @@ }, { "Number": 43, - "Text": "43 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllFieldsValue = 0This is a regular enum value.[Obsolete] OldAndUnusedValue = 1This is old and unused. You shouldn't use it anymore.[Obsolete(\"Use Value\")] OldAndUnusedValue2 = 2This is old and unused. You shouldn't use it anymore.Enum Class1.Issue9260public enum Class1.Issue9260", + "Text": "43 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllFieldsValue = 0This is a regular enum value.[Obsolete] OldAndUnusedValue = 1This is old and unused. You shouldn't use it anymore.[Obsolete(\"Use Value\")] OldAndUnusedValue2 = 2This is old and unused. You shouldn't use it anymore.Enum Class1.Issue9260public enum Class1.Issue9260", "Links": [ { "Goto": { @@ -2878,7 +2878,7 @@ }, { "Number": 44, - "Text": "44 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Class1.TestInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Class1.Testpublic class Class1.Test\uF12C", + "Text": "44 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Class1.TestInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Class1.Testpublic class Class1.Test\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -2983,7 +2983,7 @@ }, { "Number": 45, - "Text": "45 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", + "Text": "45 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", "Links": [ { "Goto": { @@ -3016,7 +3016,7 @@ }, { "Number": 46, - "Text": "46 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 InheritdocImplementsIInheritdoc, IDisposable\uF1C5Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsPerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.This method should do something...This method should do something...Class Inheritdocpublic class Inheritdoc : IInheritdoc, IDisposable\uF12CDispose()public void Dispose()Issue7628()public void Issue7628()Issue7629()", + "Text": "46 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 InheritdocImplementsIInheritdoc, IDisposable\uF1C5Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsPerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.This method should do something...This method should do something...Class Inheritdocpublic class Inheritdoc : IInheritdoc, IDisposable\uF12CDispose()public void Dispose()Issue7628()public void Issue7628()Issue7629()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3139,12 +3139,12 @@ }, { "Number": 47, - "Text": "47 / 123public void Issue7629()", + "Text": "47 / 126public void Issue7629()", "Links": [] }, { "Number": 48, - "Text": "48 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Inheritdoc.Issue6366public class Inheritdoc.Issue6366\uF12C", + "Text": "48 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Inheritdoc.Issue6366public class Inheritdoc.Issue6366\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3249,7 +3249,7 @@ }, { "Number": 49, - "Text": "49 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1DerivedInheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 TThis text NOT inherited.parm2 int\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class1public abstract class Inheritdoc.Issue6366.Class1\uF12CTestMethod1(T, int)public abstract T TestMethod1(T parm1, int parm2)", + "Text": "49 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1DerivedInheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 TThis text NOT inherited.parm2 int\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class1public abstract class Inheritdoc.Issue6366.Class1\uF12CTestMethod1(T, int)public abstract T TestMethod1(T parm1, int parm2)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3390,12 +3390,12 @@ }, { "Number": 50, - "Text": "50 / 123ReturnsTThis text inherited.", + "Text": "50 / 126ReturnsTThis text inherited.", "Links": [] }, { "Number": 51, - "Text": "51 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 bool\uF1C5This text NOT inherited.parm2 int\uF1C5This text inherited.Returnsbool\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class2public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1\uF12C\uF12CTestMethod1(bool, int)public override bool TestMethod1(bool parm1, int parm2)", + "Text": "51 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis text inherited.Parametersparm1 bool\uF1C5This text NOT inherited.parm2 int\uF1C5This text inherited.Returnsbool\uF1C5This text inherited.Class Inheritdoc.Issue6366.Class2public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1\uF12C\uF12CTestMethod1(bool, int)public override bool TestMethod1(bool parm1, int parm2)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3563,7 +3563,7 @@ }, { "Number": 52, - "Text": "52 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue7035Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsClass Inheritdoc.Issue7035public class Inheritdoc.Issue7035\uF12CA()public void A()B()public void B()", + "Text": "52 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue7035Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsClass Inheritdoc.Issue7035public class Inheritdoc.Issue7035\uF12CA()public void A()B()public void B()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3668,7 +3668,7 @@ }, { "Number": 53, - "Text": "53 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllThis is a test class to have something for DocFX to document.Inheritanceobject\uF1C5 Inheritdoc.Issue7484Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5RemarksWe're going to talk about things now.BoolReturningMethod(bool)Simple method to generate docs for.DoDadA string that could have something.ConstructorsThis is a constructor to document.PropertiesA string that could have something.Class Inheritdoc.Issue7484public class Inheritdoc.Issue7484\uF12CIssue7484()public Issue7484()DoDad", + "Text": "53 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllThis is a test class to have something for DocFX to document.Inheritanceobject\uF1C5 Inheritdoc.Issue7484Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5RemarksWe're going to talk about things now.BoolReturningMethod(bool)Simple method to generate docs for.DoDadA string that could have something.ConstructorsThis is a constructor to document.PropertiesA string that could have something.Class Inheritdoc.Issue7484public class Inheritdoc.Issue7484\uF12CIssue7484()public Issue7484()DoDad", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -3774,7 +3774,7 @@ "PageNumber": 54, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, @@ -3783,7 +3783,7 @@ "PageNumber": 54, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, @@ -3792,7 +3792,7 @@ "PageNumber": 54, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, @@ -3818,7 +3818,7 @@ }, { "Number": 54, - "Text": "54 / 123Property Valuestring\uF1C5MethodsSimple method to generate docs for.Parameterssource bool\uF1C5A meaningless boolean value, much like most questions in the world.Returnsbool\uF1C5An exactly equivalently meaningless boolean value, much like most answers in the world.RemarksI'd like to take a moment to thank all of those who helped me get to a place where I can writedocumentation like this.public string DoDad { get; }BoolReturningMethod(bool)public bool BoolReturningMethod(bool source)", + "Text": "54 / 126Property Valuestring\uF1C5This is a test class to have something for DocFX to document.MethodsSimple method to generate docs for.Parameterssource bool\uF1C5A meaningless boolean value, much like most questions in the world.Returnsbool\uF1C5An exactly equivalently meaningless boolean value, much like most answers in the world.RemarksI'd like to take a moment to thank all of those who helped me get to a place where I can writedocumentation like this.public string DoDad { get; }BoolReturningMethod(bool)public bool BoolReturningMethod(bool source)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -3851,7 +3851,7 @@ }, { "Number": 55, - "Text": "55 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue8101Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsCreate a new tween.Parametersfrom int\uF1C5The starting value.to int\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5A callback that will be invoked every time the tween value changes.Class Inheritdoc.Issue8101public class Inheritdoc.Issue8101\uF12CTween(int, int, float, Action)public static object Tween(int from, int to, float duration, Action onChange)", + "Text": "55 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue8101Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsCreate a new tween.Parametersfrom int\uF1C5The starting value.to int\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5A callback that will be invoked every time the tween value changes.Class Inheritdoc.Issue8101public class Inheritdoc.Issue8101\uF12CTween(int, int, float, Action)public static object Tween(int from, int to, float duration, Action onChange)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4001,7 +4001,7 @@ }, { "Number": 56, - "Text": "56 / 123Returnsobject\uF1C5The newly created tween instance.Create a new tween.Parametersfrom float\uF1C5The starting value.to float\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Tween(float, float, float, Action)public static object Tween(float from, float to, float duration, Action onChange)", + "Text": "56 / 126Returnsobject\uF1C5The newly created tween instance.Create a new tween.Parametersfrom float\uF1C5The starting value.to float\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.onChange Action\uF1C5A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Tween(float, float, float, Action)public static object Tween(float from, float to, float duration, Action onChange)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4070,7 +4070,7 @@ }, { "Number": 57, - "Text": "57 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5ConstructorsParametersfoo string\uF1C5Struct Inheritdoc.Issue8129public struct Inheritdoc.Issue8129Issue8129(string)public Issue8129(string foo)", + "Text": "57 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5ConstructorsParametersfoo string\uF1C5Struct Inheritdoc.Issue8129public struct Inheritdoc.Issue8129Issue8129(string)public Issue8129(string foo)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -4166,7 +4166,7 @@ }, { "Number": 58, - "Text": "58 / 123Namespace:BuildFromProjectAssembly:BuildFromProject.dllA nice classInheritanceobject\uF1C5 Issue8725Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsAnother nice operationA nice operationSee AlsoClass1Class Issue8725public class Issue8725\uF12CMoreOperations()public void MoreOperations()MyOperation()public void MyOperation()", + "Text": "58 / 126Namespace:BuildFromProjectAssembly:BuildFromProject.dllA nice classInheritanceobject\uF1C5 Issue8725Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsAnother nice operationA nice operationSee AlsoClass1Class Issue8725public class Issue8725\uF12CMoreOperations()public void MoreOperations()MyOperation()public void MyOperation()", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4280,7 +4280,7 @@ }, { "Number": 59, - "Text": "59 / 123ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", + "Text": "59 / 126ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", "Links": [ { "Goto": { @@ -4313,7 +4313,7 @@ }, { "Number": 60, - "Text": "60 / 123Namespace:BuildFromVBSourceCodeThis is the BaseClassInheritanceobject\uF1C5 BaseClass1DerivedClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParameterskeyword Class1ReturnsDateTime\uF1C5Class BaseClass1public abstract class BaseClass1\uF12CWithDeclarationKeyword(Class1)public abstract DateTime WithDeclarationKeyword(Class1 keyword)", + "Text": "60 / 126Namespace:BuildFromVBSourceCodeThis is the BaseClassInheritanceobject\uF1C5 BaseClass1DerivedClass1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5MethodsParameterskeyword Class1This is the BaseClassReturnsDateTime\uF1C5This is the BaseClassClass BaseClass1public abstract class BaseClass1\uF12CWithDeclarationKeyword(Class1)public abstract DateTime WithDeclarationKeyword(Class1 keyword)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4463,7 +4463,7 @@ }, { "Number": 61, - "Text": "61 / 123Namespace:BuildFromVBSourceCodeThis is summary from vb class...Inheritanceobject\uF1C5 BaseClass1 Class1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5FieldsThis is a Value typeField ValueClass1PropertiesProperty ValueClass Class1public class Class1 : BaseClass1\uF12C\uF12CValueClasspublic Class1 ValueClassKeyword[Obsolete(\"This member is obsolete.\", true)]public Class1 Keyword { get; }", + "Text": "61 / 126Namespace:BuildFromVBSourceCodeThis is summary from vb class...Inheritanceobject\uF1C5 BaseClass1 Class1Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.Finalize()\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 ,object.ToString()\uF1C5FieldsThis is a Value typeField ValueClass1This is summary from vb class...PropertiesClass Class1public class Class1 : BaseClass1\uF12C\uF12CValueClasspublic Class1 ValueClassKeyword[Obsolete(\"This member is obsolete.\", true)]public Class1 Keyword { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -4613,7 +4613,7 @@ }, { "Number": 62, - "Text": "62 / 123Class1MethodsThis is a FunctionParametersname string\uF1C5Name as the String valueReturnsint\uF1C5Returns AhoooWhat is Sub?Parameterskeyword Class1ReturnsDateTime\uF1C5Value(string)public int Value(string name)WithDeclarationKeyword(Class1)public override DateTime WithDeclarationKeyword(Class1 keyword)", + "Text": "62 / 126Property ValueClass1This is summary from vb class...MethodsThis is a FunctionParametersname string\uF1C5Name as the String valueReturnsint\uF1C5Returns AhoooWhat is Sub?Parameterskeyword Class1This is summary from vb class...ReturnsValue(string)public int Value(string name)WithDeclarationKeyword(Class1)public override DateTime WithDeclarationKeyword(Class1 keyword)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -4633,15 +4633,6 @@ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, { "Goto": { "PageNumber": 61, @@ -4664,11 +4655,26 @@ }, { "Number": 63, - "Text": "63 / 123NamespacesCatLibrary.CoreClassesCatExceptionCatHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see the remarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classComplexICatExtensionIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classTomTom class is only inherit from Object. Not any member inside itself.TomFromBaseClassTomFromBaseClass inherits from @InterfacesIAnimalThis is basic interface of all animal.ICatCat's interfaceDelegatesFakeDelegateFake delegateNamespace CatLibrary", + "Text": "63 / 126DateTime\uF1C5This is summary from vb class...", + "Links": [ + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + }, + { + "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" + } + ] + }, + { + "Number": 64, + "Text": "64 / 126NamespacesCatLibrary.CoreClassesCatExceptionCatHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see the remarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classComplexICatExtensionIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classTomTom class is only inherit from Object. Not any member inside itself.TomFromBaseClassTomFromBaseClass inherits from @InterfacesIAnimalThis is basic interface of all animal.ICatCat's interfaceDelegatesFakeDelegateFake delegateNamespace CatLibrary", "Links": [ { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -4677,7 +4683,7 @@ }, { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -4686,7 +4692,7 @@ }, { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -4695,7 +4701,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -4704,7 +4710,7 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -4713,7 +4719,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -4722,7 +4728,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -4731,7 +4737,7 @@ }, { "Goto": { - "PageNumber": 84, + "PageNumber": 87, "Type": 2, "Coordinates": { "Top": 0 @@ -4740,7 +4746,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -4749,7 +4755,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -4758,7 +4764,7 @@ }, { "Goto": { - "PageNumber": 94, + "PageNumber": 97, "Type": 2, "Coordinates": { "Top": 0 @@ -4767,7 +4773,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -4776,7 +4782,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -4785,7 +4791,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -4794,7 +4800,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -4803,7 +4809,7 @@ }, { "Goto": { - "PageNumber": 86, + "PageNumber": 89, "Type": 2, "Coordinates": { "Top": 0 @@ -4812,7 +4818,7 @@ }, { "Goto": { - "PageNumber": 89, + "PageNumber": 92, "Type": 2, "Coordinates": { "Top": 0 @@ -4821,7 +4827,7 @@ }, { "Goto": { - "PageNumber": 85, + "PageNumber": 88, "Type": 2, "Coordinates": { "Top": 0 @@ -4831,12 +4837,12 @@ ] }, { - "Number": 64, - "Text": "64 / 123MRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", + "Number": 65, + "Text": "65 / 126MRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", "Links": [ { "Goto": { - "PageNumber": 92, + "PageNumber": 95, "Type": 2, "Coordinates": { "Top": 0 @@ -4845,7 +4851,7 @@ }, { "Goto": { - "PageNumber": 93, + "PageNumber": 96, "Type": 2, "Coordinates": { "Top": 0 @@ -4854,7 +4860,7 @@ }, { "Goto": { - "PageNumber": 93, + "PageNumber": 96, "Type": 2, "Coordinates": { "Top": 0 @@ -4863,7 +4869,7 @@ }, { "Goto": { - "PageNumber": 93, + "PageNumber": 96, "Type": 2, "Coordinates": { "Top": 0 @@ -4873,12 +4879,12 @@ ] }, { - "Number": 65, - "Text": "65 / 123ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", + "Number": 66, + "Text": "66 / 126ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", "Links": [ { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -4887,7 +4893,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -4896,7 +4902,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -4905,7 +4911,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -4914,7 +4920,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -4923,7 +4929,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -4932,7 +4938,7 @@ }, { "Goto": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -4941,7 +4947,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -4950,7 +4956,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -4959,7 +4965,7 @@ }, { "Goto": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -4968,7 +4974,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Type": 2, "Coordinates": { "Top": 0 @@ -4977,7 +4983,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -4986,7 +4992,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -4995,7 +5001,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5004,7 +5010,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -5013,7 +5019,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -5022,7 +5028,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -5031,7 +5037,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -5040,7 +5046,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -5049,7 +5055,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -5058,7 +5064,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -5067,7 +5073,7 @@ }, { "Goto": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -5076,7 +5082,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 70, "Type": 2, "Coordinates": { "Top": 0 @@ -5085,7 +5091,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 70, "Type": 2, "Coordinates": { "Top": 0 @@ -5094,7 +5100,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 70, "Type": 2, "Coordinates": { "Top": 0 @@ -5103,7 +5109,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 70, "Type": 2, "Coordinates": { "Top": 0 @@ -5112,7 +5118,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 70, "Type": 2, "Coordinates": { "Top": 0 @@ -5121,7 +5127,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5130,7 +5136,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5139,7 +5145,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5148,7 +5154,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5157,7 +5163,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5166,7 +5172,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5175,7 +5181,7 @@ }, { "Goto": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -5185,8 +5191,8 @@ ] }, { - "Number": 66, - "Text": "66 / 123Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllStruct ContainersRefTypeInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Extension MethodsIssue231.Bar(ContainersRefType) , Issue231.Foo(ContainersRefType)FieldsColorCountField Valuelong\uF1C5PropertiesGetColorCountStruct ContainersRefTypepublic struct ContainersRefTypeColorCountpublic long ColorCountGetColorCountpublic long GetColorCount { get; }", + "Number": 67, + "Text": "67 / 126Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllStruct ContainersRefTypeInherited MembersValueType.Equals(object)\uF1C5 , ValueType.GetHashCode()\uF1C5 , ValueType.ToString()\uF1C5 ,object.Equals(object, object)\uF1C5 , object.GetType()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Extension MethodsIssue231.Bar(ContainersRefType) , Issue231.Foo(ContainersRefType)FieldsColorCountField Valuelong\uF1C5Struct ContainersRefTypePropertiesGetColorCountStruct ContainersRefTypepublic struct ContainersRefTypeColorCountpublic long ColorCountGetColorCountpublic long GetColorCount { get; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" @@ -5253,7 +5259,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5262,7 +5268,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5271,7 +5277,7 @@ }, { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -5280,7 +5286,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Coordinates": { "Left": 28, "Top": 429.5 @@ -5289,7 +5295,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Coordinates": { "Left": 28, "Top": 429.5 @@ -5298,7 +5304,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Coordinates": { "Left": 28, "Top": 429.5 @@ -5307,7 +5313,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Coordinates": { "Left": 28, "Top": 429.5 @@ -5316,7 +5322,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Coordinates": { "Left": 28, "Top": 253.99994 @@ -5325,7 +5331,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Coordinates": { "Left": 28, "Top": 253.99994 @@ -5334,7 +5340,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Coordinates": { "Left": 28, "Top": 253.99994 @@ -5343,7 +5349,7 @@ }, { "Goto": { - "PageNumber": 73, + "PageNumber": 75, "Coordinates": { "Left": 28, "Top": 253.99994 @@ -5353,8 +5359,8 @@ ] }, { - "Number": 67, - "Text": "67 / 123Property Valuelong\uF1C5MethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Returnsint\uF1C5EventsEvent TypeEventHandler\uF1C5ContainersRefTypeNonRefMethod(params object[])public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)ContainersRefTypeEventHandlerpublic event EventHandler ContainersRefTypeEventHandler", + "Number": 68, + "Text": "68 / 126Property Valuelong\uF1C5Struct ContainersRefTypeMethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Struct ContainersRefTypeReturnsint\uF1C5Struct ContainersRefTypeEventsEvent TypeEventHandler\uF1C5Struct ContainersRefTypeContainersRefTypeNonRefMethod(params object[])public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)ContainersRefTypeEventHandlerpublic event EventHandler ContainersRefTypeEventHandler", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -5395,12 +5401,17 @@ ] }, { - "Number": 68, - "Text": "68 / 123Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", + "Number": 69, + "Text": "69 / 126", + "Links": [] + }, + { + "Number": 70, + "Text": "70 / 126Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", "Links": [ { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5409,7 +5420,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5418,7 +5429,7 @@ }, { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -5428,8 +5439,8 @@ ] }, { - "Number": 69, - "Text": "69 / 123Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ContainersRefType.ContainersRefTypeChildInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ClassContainersRefType.ContainersRefTypeChildpublic class ContainersRefType.ContainersRefTypeChild\uF12C", + "Number": 71, + "Text": "71 / 126Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ContainersRefType.ContainersRefTypeChildInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ClassContainersRefType.ContainersRefTypeChildpublic class ContainersRefType.ContainersRefTypeChild\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5505,7 +5516,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5514,7 +5525,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5523,7 +5534,7 @@ }, { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -5533,12 +5544,12 @@ ] }, { - "Number": 70, - "Text": "70 / 123Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", + "Number": 72, + "Text": "72 / 126Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", "Links": [ { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5547,7 +5558,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5556,7 +5567,7 @@ }, { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -5566,12 +5577,12 @@ ] }, { - "Number": 71, - "Text": "71 / 123Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", + "Number": 73, + "Text": "73 / 126Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", "Links": [ { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5580,7 +5591,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5589,7 +5600,7 @@ }, { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -5599,8 +5610,8 @@ ] }, { - "Number": 72, - "Text": "72 / 123Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ExplicitLayoutClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class ExplicitLayoutClasspublic class ExplicitLayoutClass\uF12C", + "Number": 74, + "Text": "74 / 126Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInheritanceobject\uF1C5 ExplicitLayoutClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class ExplicitLayoutClasspublic class ExplicitLayoutClass\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5676,7 +5687,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5685,7 +5696,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5694,7 +5705,7 @@ }, { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -5704,8 +5715,8 @@ ] }, { - "Number": 73, - "Text": "73 / 123Namespace:CatLibrary.CoreAssembly:CatLibrary.dllInheritanceobject\uF1C5 Issue231Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParametersc ContainersRefTypeParametersc ContainersRefTypeClass Issue231public static class Issue231\uF12CBar(ContainersRefType)public static void Bar(this ContainersRefType c)Foo(ContainersRefType)public static void Foo(this ContainersRefType c)", + "Number": 75, + "Text": "75 / 126Namespace:CatLibrary.CoreAssembly:CatLibrary.dllInheritanceobject\uF1C5 Issue231Inherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsParametersc ContainersRefTypeParametersc ContainersRefTypeClass Issue231public static class Issue231\uF12CBar(ContainersRefType)public static void Bar(this ContainersRefType c)Foo(ContainersRefType)public static void Foo(this ContainersRefType c)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -5781,7 +5792,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5790,7 +5801,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -5799,7 +5810,7 @@ }, { "Goto": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -5808,7 +5819,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5817,7 +5828,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5826,7 +5837,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5835,7 +5846,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5844,7 +5855,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5853,7 +5864,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -5863,8 +5874,8 @@ ] }, { - "Number": 74, - "Text": "74 / 123Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTInheritanceobject\uF1C5 Exception\uF1C5 CatExceptionImplementsISerializable\uF1C5Inherited MembersException.GetBaseException()\uF1C5 , Exception.GetObjectData(SerializationInfo, StreamingContext)\uF1C5 ,Exception.GetType()\uF1C5 , Exception.ToString()\uF1C5 , Exception.Data\uF1C5 , Exception.HelpLink\uF1C5 ,Exception.HResult\uF1C5 , Exception.InnerException\uF1C5 , Exception.Message\uF1C5 , Exception.Source\uF1C5 ,Exception.StackTrace\uF1C5 , Exception.TargetSite\uF1C5 , Exception.SerializeObjectState\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Class CatExceptionpublic class CatException : Exception, ISerializable\uF12C\uF12C", + "Number": 76, + "Text": "76 / 126Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTInheritanceobject\uF1C5 Exception\uF1C5 CatExceptionImplementsISerializable\uF1C5Inherited MembersException.GetBaseException()\uF1C5 , Exception.GetObjectData(SerializationInfo, StreamingContext)\uF1C5 ,Exception.GetType()\uF1C5 , Exception.ToString()\uF1C5 , Exception.Data\uF1C5 , Exception.HelpLink\uF1C5 ,Exception.HResult\uF1C5 , Exception.InnerException\uF1C5 , Exception.Message\uF1C5 , Exception.Source\uF1C5 ,Exception.StackTrace\uF1C5 , Exception.TargetSite\uF1C5 , Exception.SerializeObjectState\uF1C5 ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5Class CatExceptionpublic class CatException : Exception, ISerializable\uF12C\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -6057,7 +6068,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6066,7 +6077,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6076,8 +6087,8 @@ ] }, { - "Number": 75, - "Text": "75 / 123Namespace:CatLibraryAssembly:CatLibrary.dllHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see the remarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classThis is a class talking about CAT\uF1C5.NOTE This is a CAT classRefer to IAnimal to see other animals.Type ParametersTThis type should be class and can new instance.KThis type is a struct type, class type can't be used for this parameter.Inheritanceobject\uF1C5 CatImplementsICat, IAnimalInherited Membersobject.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Cat[Serializable][Obsolete]public class Cat : ICat, IAnimal where T : class, new() where K : struct\uF12C", + "Number": 77, + "Text": "77 / 126Namespace:CatLibraryAssembly:CatLibrary.dllHere's main class of this Demo.You can see mostly type of article within this class and you for more detail, please see the remarks.this class is a template class. It has two Generic parameter. they are: T and K.The extension method of this class can refer to ICatExtension classThis is a class talking about CAT\uF1C5.NOTE This is a CAT classRefer to IAnimal to see other animals.Type ParametersTThis type should be class and can new instance.KThis type is a struct type, class type can't be used for this parameter.Inheritanceobject\uF1C5 CatImplementsICat, IAnimalInherited Membersobject.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Cat[Serializable][Obsolete]public class Cat : ICat, IAnimal where T : class, new() where K : struct\uF12C", "Links": [ { "Uri": "https://en.wikipedia.org/wiki/Cat" @@ -6153,7 +6164,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6162,7 +6173,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6171,7 +6182,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -6180,7 +6191,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -6189,7 +6200,7 @@ }, { "Goto": { - "PageNumber": 86, + "PageNumber": 89, "Type": 2, "Coordinates": { "Top": 0 @@ -6198,7 +6209,7 @@ }, { "Goto": { - "PageNumber": 89, + "PageNumber": 92, "Type": 2, "Coordinates": { "Top": 0 @@ -6207,7 +6218,7 @@ }, { "Goto": { - "PageNumber": 86, + "PageNumber": 89, "Type": 2, "Coordinates": { "Top": 0 @@ -6217,8 +6228,8 @@ ] }, { - "Number": 76, - "Text": "76 / 123Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)ExamplesHere's example of how to create an instance of this class. As T is limited with class and K is limited withstruct.As you see, here we bring in pointer so we need to add unsafe keyword.RemarksTHIS is remarks overridden in MARKDWON fileConstructorsDefault constructor.It's a complex constructor. The parameter will have some attributes.ParametersnickName string\uF1C5var a = new Cat(object, int)();int catNumber = new int();unsafe{ a.GetFeetLength(catNumber);}Cat()public Cat()Cat(string, out int, string, bool)public Cat(string nickName, out int age, string realName, bool isHealthy)", + "Number": 78, + "Text": "78 / 126Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)ExamplesHere's example of how to create an instance of this class. As T is limited with class and K is limited withstruct.As you see, here we bring in pointer so we need to add unsafe keyword.RemarksTHIS is remarks overridden in MARKDWON fileConstructorsDefault constructor.It's a complex constructor. The parameter will have some attributes.ParametersnickName string\uF1C5var a = new Cat(object, int)();int catNumber = new int();unsafe{ a.GetFeetLength(catNumber);}Cat()public Cat()Cat(string, out int, string, bool)public Cat(string nickName, out int age, string realName, bool isHealthy)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -6231,7 +6242,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6240,7 +6251,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6249,7 +6260,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6258,7 +6269,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6267,7 +6278,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6276,7 +6287,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6285,7 +6296,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6294,7 +6305,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -6303,7 +6314,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 764 @@ -6312,7 +6323,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 764 @@ -6321,7 +6332,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 764 @@ -6330,7 +6341,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 764 @@ -6340,8 +6351,8 @@ ] }, { - "Number": 77, - "Text": "77 / 123it's string type.age int\uF1C5It's an out and ref parameter.realName string\uF1C5It's an out paramter.isHealthy bool\uF1C5It's an in parameter.Constructor with one generic parameter.ParametersownType TThis parameter type defined by class.FieldsField with attribute.Field Valuebool\uF1C5Cat(T)public Cat(T ownType)isHealthy[ContextStatic][NonSerialized][Obsolete]public bool isHealthy", + "Number": 79, + "Text": "79 / 126it's string type.age int\uF1C5It's an out and ref parameter.realName string\uF1C5It's an out paramter.isHealthy bool\uF1C5It's an in parameter.Constructor with one generic parameter.ParametersownType TThis parameter type defined by class.FieldsField with attribute.Field Valuebool\uF1C5Cat(T)public Cat(T ownType)isHealthy[ContextStatic][NonSerialized][Obsolete]public bool isHealthy", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6382,8 +6393,8 @@ ] }, { - "Number": 78, - "Text": "78 / 123PropertiesHint cat's age.Property Valueint\uF1C5This is index property of Cat. You can see that the visibility is different between get and set method.Parametersa string\uF1C5Cat's name.Property Valueint\uF1C5Cat's number.EII property.Age[Obsolete]protected int Age { get; set; }this[string]public int this[string a] { protected get; set; }Namepublic string Name { get; }", + "Number": 80, + "Text": "80 / 126Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classPropertiesHint cat's age.Property Valueint\uF1C5Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classThis is index property of Cat. You can see that the visibility is different between get and set method.Parametersa string\uF1C5Cat's name.Property Valueint\uF1C5Cat's number.Age[Obsolete]protected int Age { get; set; }this[string]public int this[string a] { protected get; set; }", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6415,8 +6426,8 @@ ] }, { - "Number": 79, - "Text": "79 / 123Property Valuestring\uF1C5MethodsIt's an overridden summary in markdown formatThis is overriding methods. You can override parameter descriptions for methods, you can even addexceptions to methods. Check the intermediate obj folder to see the data model of the generatedmethod/class. Override Yaml header should follow the data structure.Parametersdate DateTime\uF1C5This is overridden description for a parameter. id must be specified.ReturnsDictionary\uF1C5>It's overridden description for return. type must be specified.ExceptionsArgumentException\uF1C5This is an overridden argument exception. you can add additional exception by adding differentexception type.Override the method of Object.Equals(object obj).Override CalculateFood Namepublic Dictionary> CalculateFood(DateTime date)Equals(object)", + "Number": 81, + "Text": "81 / 126EII property.Property Valuestring\uF1C5Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classMethodsIt's an overridden summary in markdown formatThis is overriding methods. You can override parameter descriptions for methods, you can even addexceptions to methods. Check the intermediate obj folder to see the data model of the generatedmethod/class. Override Yaml header should follow the data structure.Parametersdate DateTime\uF1C5This is overridden description for a parameter. id must be specified.ReturnsDictionary\uF1C5>It's overridden description for return. type must be specified.ExceptionsNamepublic string Name { get; }Override CalculateFood Namepublic Dictionary> CalculateFood(DateTime date)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -6471,7 +6482,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, + } + ] + }, + { + "Number": 82, + "Text": "82 / 126ArgumentException\uF1C5This is an overridden argument exception. you can add additional exception by adding differentexception type.Override the method of Object.Equals(object obj).Parametersobj object\uF1C5Can pass any class type.Returnsbool\uF1C5The return value tell you whehter the compare operation is successful.It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword.ParameterscatName int\uF1C5*Thie represent for cat name length.parameters object\uF1C5[]Optional parameters.Equals(object)public override bool Equals(object obj)GetTailLength(int*, params object[])public long GetTailLength(int* catName, params object[] parameters)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" }, @@ -6480,13 +6497,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - } - ] - }, - { - "Number": 80, - "Text": "80 / 123Parametersobj object\uF1C5Can pass any class type.Returnsbool\uF1C5The return value tell you whehter the compare operation is successful.It's an unsafe method. As you see, catName is a pointer, so we need to add unsafe keyword.ParameterscatName int\uF1C5*Thie represent for cat name length.parameters object\uF1C5[]Optional parameters.Returnslong\uF1C5Return cat tail's length.This method have attribute above it.public override bool Equals(object obj)GetTailLength(int*, params object[])public long GetTailLength(int* catName, params object[] parameters)Jump(T, K, ref bool)", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" }, @@ -6522,7 +6533,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, + } + ] + }, + { + "Number": 83, + "Text": "83 / 126Returnslong\uF1C5Return cat tail's length.This method have attribute above it.ParametersownType TType come from class define.anotherOwnType KType come from class define.cheat bool\uF1C5Hint whether this cat has cheat mode.ExceptionsArgumentException\uF1C5This is an argument exceptionEventsEat event of this catJump(T, K, ref bool)[Conditional(\"Debug\")]public void Jump(T ownType, K anotherOwnType, ref bool cheat)ownEat[Obsolete(\"This _event handler_ is deprecated.\")]", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" }, @@ -6531,13 +6548,7 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - } - ] - }, - { - "Number": 81, - "Text": "81 / 123ParametersownType TType come from class define.anotherOwnType KType come from class define.cheat bool\uF1C5Hint whether this cat has cheat mode.ExceptionsArgumentException\uF1C5This is an argument exceptionEventsEat event of this catEvent TypeEventHandler\uF1C5Operators[Conditional(\"Debug\")]public void Jump(T ownType, K anotherOwnType, ref bool cheat)ownEat[Obsolete(\"This _event handler_ is deprecated.\")]public event EventHandler ownEatoperator +(Cat, int)", - "Links": [ + }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" }, @@ -6555,7 +6566,13 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, + } + ] + }, + { + "Number": 84, + "Text": "84 / 126Event TypeEventHandler\uF1C5Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classOperatorsAddition operator of this class.Parameterslsr Cat..rsr int\uF1C5~~Returnsint\uF1C5Result with int type.Expilicit operator of this class.It means this cat can evolve to change to Tom. Tom and Jerry.public event EventHandler ownEatoperator +(Cat, int)public static int operator +(Cat lsr, int rsr)explicit operator Tom(Cat)", + "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" }, @@ -6564,15 +6581,6 @@ }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - } - ] - }, - { - "Number": 82, - "Text": "82 / 123Addition operator of this class.Parameterslsr Cat..rsr int\uF1C5~~Returnsint\uF1C5Result with int type.Expilicit operator of this class.It means this cat can evolve to change to Tom. Tom and Jerry.Parameterssrc CatInstance of this class.ReturnsTomAdvanced class type of cat.public static int operator +(Cat lsr, int rsr)explicit operator Tom(Cat)public static explicit operator Tom(Cat src)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6590,26 +6598,11 @@ "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } + "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" }, { "Goto": { - "PageNumber": 94, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -6619,8 +6612,8 @@ ] }, { - "Number": 83, - "Text": "83 / 123Similar with operaotr +, refer to that topic.Parameterslsr Catrsr int\uF1C5Returnsint\uF1C5operator -(Cat, int)public static int operator -(Cat lsr, int rsr)", + "Number": 85, + "Text": "85 / 126Parameterssrc CatInstance of this class.ReturnsTomAdvanced class type of cat.Similar with operaotr +, refer to that topic.Parameterslsr CatHere's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classrsr int\uF1C5Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tand K. The extension method of this class can refer to classReturnsint\uF1C5Here's main class of this Demo. You can see mostly type of article within this class and you for moredetail, please see the remarks. this class is a template class. It has two Generic parameter. they are: Tpublic static explicit operator Tom(Cat src)operator -(Cat, int)public static int operator -(Cat lsr, int rsr)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6642,7 +6635,25 @@ }, { "Goto": { - "PageNumber": 75, + "PageNumber": 77, + "Type": 2, + "Coordinates": { + "Top": 0 + } + } + }, + { + "Goto": { + "PageNumber": 97, + "Type": 2, + "Coordinates": { + "Top": 0 + } + } + }, + { + "Goto": { + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -6652,8 +6663,13 @@ ] }, { - "Number": 84, - "Text": "84 / 123Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTJInheritanceobject\uF1C5 ComplexInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Complexpublic class Complex\uF12C", + "Number": 86, + "Text": "86 / 126and K. The extension method of this class can refer to class", + "Links": [] + }, + { + "Number": 87, + "Text": "87 / 126Namespace:CatLibraryAssembly:CatLibrary.dllType ParametersTJInheritanceobject\uF1C5 ComplexInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5Class Complexpublic class Complex\uF12C", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -6729,7 +6745,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6738,7 +6754,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6748,8 +6764,8 @@ ] }, { - "Number": 85, - "Text": "85 / 123Namespace:CatLibraryAssembly:CatLibrary.dllFake delegateParametersnum long\uF1C5Fake paraname string\uF1C5Fake parascores object\uF1C5[]Optional Parameter.Returnsint\uF1C5Return a fake number to confuse you.Type ParametersTFake paraDelegate FakeDelegatepublic delegate int FakeDelegate(long num, string name, params object[] scores)", + "Number": 88, + "Text": "88 / 126Namespace:CatLibraryAssembly:CatLibrary.dllFake delegateParametersnum long\uF1C5Fake paraname string\uF1C5Fake parascores object\uF1C5[]Optional Parameter.Returnsint\uF1C5Return a fake number to confuse you.Type ParametersTFake paraDelegate FakeDelegatepublic delegate int FakeDelegate(long num, string name, params object[] scores)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -6789,7 +6805,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6798,7 +6814,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6808,8 +6824,8 @@ ] }, { - "Number": 86, - "Text": "86 / 123Namespace:CatLibraryAssembly:CatLibrary.dllThis is basic interface of all animal.Welcome to the Animal world!RemarksTHIS is remarks overridden in MARKDWON filePropertiesReturn specific number animal's name.Parametersindex int\uF1C5Animal number.Property Valuestring\uF1C5Animal name.Name of Animal.Interface IAnimalpublic interface IAnimalthis[int]string this[int index] { get; }Name", + "Number": 89, + "Text": "89 / 126Namespace:CatLibraryAssembly:CatLibrary.dllThis is basic interface of all animal.Welcome to the Animal world!RemarksTHIS is remarks overridden in MARKDWON filePropertiesReturn specific number animal's name.Parametersindex int\uF1C5Animal number.Property Valuestring\uF1C5Animal name.Name of Animal.Interface IAnimalpublic interface IAnimalthis[int]string this[int index] { get; }Name", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" @@ -6831,7 +6847,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6840,7 +6856,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6850,8 +6866,8 @@ ] }, { - "Number": 87, - "Text": "87 / 123Property Valuestring\uF1C5MethodsAnimal's eat method.Feed the animal with some foodParametersfood string\uF1C5Food to eatOverload method of eat. This define the animal eat by which tool.Parameterstool Toolstring Name { get; }Eat()void Eat()Eat(string)void Eat(string food)Eat(Tool)void Eat(Tool tool) where Tool : class", + "Number": 90, + "Text": "90 / 126Property Valuestring\uF1C5This is basic interface of all animal.MethodsAnimal's eat method.Feed the animal with some foodParametersfood string\uF1C5Food to eatOverload method of eat. This define the animal eat by which tool.Parametersstring Name { get; }Eat()void Eat()Eat(string)void Eat(string food)Eat(Tool)void Eat(Tool tool) where Tool : class", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -6874,13 +6890,13 @@ ] }, { - "Number": 88, - "Text": "88 / 123Tool name.Type ParametersToolIt's a class type.", + "Number": 91, + "Text": "91 / 126tool ToolTool name.Type ParametersToolIt's a class type.", "Links": [] }, { - "Number": 89, - "Text": "89 / 123Namespace:CatLibraryAssembly:CatLibrary.dllCat's interfaceInherited MembersIAnimal.Name , IAnimal.this[int] , IAnimal.Eat() , IAnimal.Eat(Tool) , IAnimal.Eat(string)Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)Eventseat event of cat. Every cat must implement this event.Event TypeEventHandler\uF1C5Interface ICatpublic interface ICat : IAnimaleatevent EventHandler eat", + "Number": 92, + "Text": "92 / 126Namespace:CatLibraryAssembly:CatLibrary.dllCat's interfaceInherited MembersIAnimal.Name , IAnimal.this[int] , IAnimal.Eat() , IAnimal.Eat(Tool) , IAnimal.Eat(string)Extension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)Eventseat event of cat. Every cat must implement this event.Event TypeEventHandler\uF1C5Cat's interfaceInterface ICatpublic interface ICat : IAnimaleatevent EventHandler eat", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" @@ -6893,7 +6909,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6902,7 +6918,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -6911,7 +6927,7 @@ }, { "Goto": { - "PageNumber": 86, + "PageNumber": 89, "Coordinates": { "Left": 28, "Top": 90.499939 @@ -6920,7 +6936,7 @@ }, { "Goto": { - "PageNumber": 86, + "PageNumber": 89, "Coordinates": { "Left": 28, "Top": 90.499939 @@ -6929,7 +6945,7 @@ }, { "Goto": { - "PageNumber": 86, + "PageNumber": 89, "Coordinates": { "Left": 28, "Top": 425.75 @@ -6938,7 +6954,7 @@ }, { "Goto": { - "PageNumber": 86, + "PageNumber": 89, "Coordinates": { "Left": 28, "Top": 425.75 @@ -6947,52 +6963,52 @@ }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Coordinates": { "Left": 28, - "Top": 584.75 + "Top": 554.75 } } }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Coordinates": { "Left": 28, - "Top": 214.24994 + "Top": 184.24994 } } }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Coordinates": { "Left": 28, - "Top": 449.74994 + "Top": 419.74994 } } }, { "Goto": { - "PageNumber": 87, + "PageNumber": 90, "Coordinates": { "Left": 28, - "Top": 449.74994 + "Top": 419.74994 } } }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -7001,7 +7017,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -7010,7 +7026,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -7019,7 +7035,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -7028,7 +7044,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -7037,7 +7053,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -7046,7 +7062,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -7055,7 +7071,7 @@ }, { "Goto": { - "PageNumber": 90, + "PageNumber": 93, "Coordinates": { "Left": 28, "Top": 339.5 @@ -7064,7 +7080,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 764 @@ -7073,7 +7089,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 764 @@ -7082,7 +7098,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 764 @@ -7091,7 +7107,7 @@ }, { "Goto": { - "PageNumber": 91, + "PageNumber": 94, "Coordinates": { "Left": 28, "Top": 764 @@ -7101,8 +7117,8 @@ ] }, { - "Number": 90, - "Text": "90 / 123Namespace:CatLibraryAssembly:CatLibrary.dllIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classInheritanceobject\uF1C5 ICatExtensionInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsExtension method to let cat playParametersicat ICatCattoy ContainersRefType.ColorTypeSomething to playClass ICatExtensionpublic static class ICatExtension\uF12CPlay(ICat, ColorType)public static void Play(this ICat icat, ContainersRefType.ColorType toy)", + "Number": 93, + "Text": "93 / 126Namespace:CatLibraryAssembly:CatLibrary.dllIt's the class that contains ICat interface's extension method.This class must be public and static.Also it shouldn't be a geneic classInheritanceobject\uF1C5 ICatExtensionInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsExtension method to let cat playParametersicat ICatCattoy ContainersRefType.ColorTypeSomething to playClass ICatExtensionpublic static class ICatExtension\uF12CPlay(ICat, ColorType)public static void Play(this ICat icat, ContainersRefType.ColorType toy)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7178,7 +7194,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -7187,7 +7203,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -7196,7 +7212,7 @@ }, { "Goto": { - "PageNumber": 89, + "PageNumber": 92, "Type": 2, "Coordinates": { "Top": 0 @@ -7205,7 +7221,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -7214,7 +7230,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -7223,7 +7239,7 @@ }, { "Goto": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -7232,7 +7248,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 70, "Type": 2, "Coordinates": { "Top": 0 @@ -7241,7 +7257,7 @@ }, { "Goto": { - "PageNumber": 68, + "PageNumber": 70, "Type": 2, "Coordinates": { "Top": 0 @@ -7251,8 +7267,8 @@ ] }, { - "Number": 91, - "Text": "91 / 123Extension method hint that how long the cat can sleep.Parametersicat ICatThe type will be extended.hours long\uF1C5The length of sleep.Sleep(ICat, long)public static void Sleep(this ICat icat, long hours)", + "Number": 94, + "Text": "94 / 126Extension method hint that how long the cat can sleep.Parametersicat ICatThe type will be extended.hours long\uF1C5The length of sleep.Sleep(ICat, long)public static void Sleep(this ICat icat, long hours)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" @@ -7265,7 +7281,7 @@ }, { "Goto": { - "PageNumber": 89, + "PageNumber": 92, "Type": 2, "Coordinates": { "Top": 0 @@ -7275,12 +7291,12 @@ ] }, { - "Number": 92, - "Text": "92 / 123Namespace:CatLibraryAssembly:CatLibrary.dllGeneric delegate with many constrains.Parametersk KType K.t TType T.l LType L.Type ParametersKGeneric K.TGeneric T.LGeneric L.Delegate MRefDelegatepublic delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable", + "Number": 95, + "Text": "95 / 126Namespace:CatLibraryAssembly:CatLibrary.dllGeneric delegate with many constrains.Parametersk KType K.t TType T.l LType L.Type ParametersKGeneric K.TGeneric T.LGeneric L.Delegate MRefDelegatepublic delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable", "Links": [ { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -7289,7 +7305,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -7299,8 +7315,8 @@ ] }, { - "Number": 93, - "Text": "93 / 123Namespace:CatLibraryAssembly:CatLibrary.dllDelegate in the namespaceParameterspics List\uF1C5a name list of pictures.name string\uF1C5give out the needed name.Delegate MRefNormalDelegatepublic delegate void MRefNormalDelegate(List pics, out string name)", + "Number": 96, + "Text": "96 / 126Namespace:CatLibraryAssembly:CatLibrary.dllDelegate in the namespaceParameterspics List\uF1C5a name list of pictures.name string\uF1C5give out the needed name.Delegate MRefNormalDelegatepublic delegate void MRefNormalDelegate(List pics, out string name)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" @@ -7331,7 +7347,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -7340,7 +7356,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -7350,8 +7366,8 @@ ] }, { - "Number": 94, - "Text": "94 / 123Namespace:CatLibraryAssembly:CatLibrary.dllTom class is only inherit from Object. Not any member inside itself.Inheritanceobject\uF1C5 TomDerivedTomFromBaseClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis is a Tom Method with complex type as returnParametersa ComplexA complex inputb Tuple\uF1C5Another complex inputClass Tompublic class Tom\uF12CTomMethod(Complex, Tuple)public Complex TomMethod(Complex a, Tuple b)", + "Number": 97, + "Text": "97 / 126Namespace:CatLibraryAssembly:CatLibrary.dllTom class is only inherit from Object. Not any member inside itself.Inheritanceobject\uF1C5 TomDerivedTomFromBaseClassInherited Membersobject.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5MethodsThis is a Tom Method with complex type as returnParametersa ComplexA complex inputb Tuple\uF1C5Another complex inputClass Tompublic class Tom\uF12CTomMethod(Complex, Tuple)public Complex TomMethod(Complex a, Tuple b)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7445,7 +7461,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -7454,7 +7470,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -7463,7 +7479,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7472,7 +7488,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7481,7 +7497,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7490,7 +7506,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7499,7 +7515,7 @@ }, { "Goto": { - "PageNumber": 84, + "PageNumber": 87, "Type": 2, "Coordinates": { "Top": 0 @@ -7508,7 +7524,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7517,7 +7533,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7526,7 +7542,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7535,7 +7551,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7544,7 +7560,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7553,7 +7569,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7562,7 +7578,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7571,7 +7587,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7580,7 +7596,7 @@ }, { "Goto": { - "PageNumber": 94, + "PageNumber": 97, "Type": 2, "Coordinates": { "Top": 0 @@ -7590,8 +7606,8 @@ ] }, { - "Number": 95, - "Text": "95 / 123ReturnsComplexComplex TomFromBaseClassExceptionsNotImplementedException\uF1C5This is not implementedArgumentException\uF1C5This is the exception to be thrown when implementedCatExceptionThis is the exception in current documentation", + "Number": 98, + "Text": "98 / 126ReturnsComplexComplex TomFromBaseClassExceptionsNotImplementedException\uF1C5This is not implementedArgumentException\uF1C5This is the exception to be thrown when implementedCatExceptionThis is the exception in current documentation", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.string" @@ -7622,7 +7638,7 @@ }, { "Goto": { - "PageNumber": 84, + "PageNumber": 87, "Type": 2, "Coordinates": { "Top": 0 @@ -7631,7 +7647,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7640,7 +7656,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7649,7 +7665,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7658,7 +7674,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7667,7 +7683,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7676,7 +7692,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7685,7 +7701,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7694,7 +7710,7 @@ }, { "Goto": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -7703,7 +7719,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -7712,7 +7728,7 @@ }, { "Goto": { - "PageNumber": 74, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -7722,8 +7738,8 @@ ] }, { - "Number": 96, - "Text": "96 / 123Namespace:CatLibraryAssembly:CatLibrary.dllTomFromBaseClass inherits from @Inheritanceobject\uF1C5 Tom TomFromBaseClassInherited MembersTom.TomMethod(Complex, Tuple) ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsThis is a #ctor with parameterParametersk int\uF1C5Class TomFromBaseClasspublic class TomFromBaseClass : Tom\uF12C\uF12CTomFromBaseClass(int)public TomFromBaseClass(int k)", + "Number": 99, + "Text": "99 / 126Namespace:CatLibraryAssembly:CatLibrary.dllTomFromBaseClass inherits from @Inheritanceobject\uF1C5 Tom TomFromBaseClassInherited MembersTom.TomMethod(Complex, Tuple) ,object.Equals(object)\uF1C5 , object.Equals(object, object)\uF1C5 , object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 ,object.MemberwiseClone()\uF1C5 , object.ReferenceEquals(object, object)\uF1C5 , object.ToString()\uF1C5ConstructorsThis is a #ctor with parameterParametersk int\uF1C5Class TomFromBaseClasspublic class TomFromBaseClass : Tom\uF12C\uF12CTomFromBaseClass(int)public TomFromBaseClass(int k)", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7808,7 +7824,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -7817,7 +7833,7 @@ }, { "Goto": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -7826,7 +7842,7 @@ }, { "Goto": { - "PageNumber": 94, + "PageNumber": 97, "Type": 2, "Coordinates": { "Top": 0 @@ -7835,7 +7851,7 @@ }, { "Goto": { - "PageNumber": 94, + "PageNumber": 97, "Coordinates": { "Left": 28, "Top": 351.5 @@ -7845,12 +7861,12 @@ ] }, { - "Number": 97, - "Text": "97 / 123EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", + "Number": 100, + "Text": "100 / 126EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", "Links": [ { "Goto": { - "PageNumber": 98, + "PageNumber": 101, "Type": 2, "Coordinates": { "Top": 0 @@ -7859,7 +7875,7 @@ }, { "Goto": { - "PageNumber": 98, + "PageNumber": 101, "Type": 2, "Coordinates": { "Top": 0 @@ -7869,8 +7885,8 @@ ] }, { - "Number": 98, - "Text": "98 / 123Namespace:MRef.Demo.EnumerationAssembly:CatLibrary.dllEnumeration ColorTypeFieldsRed = 0this color is redBlue = 1blue like riverYellow = 2yellow comes from desertRemarksRed/Blue/Yellow can become all color you want.See Alsoobject\uF1C5Enum ColorTypepublic enum ColorType", + "Number": 101, + "Text": "101 / 126Namespace:MRef.Demo.EnumerationAssembly:CatLibrary.dllEnumeration ColorTypeFieldsRed = 0this color is redBlue = 1blue like riverYellow = 2yellow comes from desertRemarksRed/Blue/Yellow can become all color you want.See Alsoobject\uF1C5Enum ColorTypepublic enum ColorType", "Links": [ { "Uri": "https://learn.microsoft.com/dotnet/api/system.object" @@ -7889,7 +7905,7 @@ }, { "Goto": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -7899,8 +7915,8 @@ ] }, { - "Number": 99, - "Text": "99 / 123| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Swagger PetstoreDescribe APIs in Pet StorepetDescription for pet tagAddPetAdd a new pet to the storeRequestParametersNameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples405Invalid inputNOTE: Add pet only when you needs.UpdatePetUpdate an existing petRequestParametersPOST /petPUT /pet", + "Number": 102, + "Text": "102 / 126| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Swagger PetstoreDescribe APIs in Pet StorepetDescription for pet tagAddPetAdd a new pet to the storeRequestParametersNameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples405Invalid inputNOTE: Add pet only when you needs.UpdatePetUpdate an existing petRequestParametersPOST /petPUT /pet", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_addPet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FaddPet%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -7940,7 +7956,7 @@ }, { "Goto": { - "PageNumber": 111, + "PageNumber": 114, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -7950,8 +7966,8 @@ ] }, { - "Number": 100, - "Text": "100 / 123| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples400Invalid ID supplied404Pet not found405Validation exceptionFindPetsByStatusFinds Pets by statusMultiple status values can be provided with comma separated stringsRequestParametersNameTypeDefaultNotes*statusStatus values that need to be considered for filterResponsesStatus CodeTypeDescriptionSamples200Pet[]successful operation400Invalid status valueFindPetsByTagsGET /pet/findByStatus?status", + "Number": 103, + "Text": "103 / 126| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples400Invalid ID supplied404Pet not found405Validation exceptionFindPetsByStatusFinds Pets by statusMultiple status values can be provided with comma separated stringsRequestParametersNameTypeDefaultNotes*statusStatus values that need to be considered for filterResponsesStatus CodeTypeDescriptionSamples200Pet[]successful operation400Invalid status valueFindPetsByTagsGET /pet/findByStatus?status", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByStatus.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByStatus%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -7991,7 +8007,7 @@ }, { "Goto": { - "PageNumber": 111, + "PageNumber": 114, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -8000,7 +8016,7 @@ }, { "Goto": { - "PageNumber": 111, + "PageNumber": 114, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -8010,8 +8026,8 @@ ] }, { - "Number": 101, - "Text": "101 / 123| Improve this Doc\uF1C5View Source\uF1C5Finds Pets by tagsMuliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.RequestParametersNameTypeDefaultNotes*tagsTags to filter byResponsesStatus CodeTypeDescriptionSamples200Pet[]successful operation400Invalid tag valueDeletePetDeletes a petRequestParametersNameTypeDefaultNotesapi_key*petIdPet id to deleteResponsesGET /pet/findByTags?tagsDELETE /pet/{petId}", + "Number": 104, + "Text": "104 / 126| Improve this Doc\uF1C5View Source\uF1C5Finds Pets by tagsMuliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.RequestParametersNameTypeDefaultNotes*tagsTags to filter byResponsesStatus CodeTypeDescriptionSamples200Pet[]successful operation400Invalid tag valueDeletePetDeletes a petRequestParametersNameTypeDefaultNotesapi_key*petIdPet id to deleteResponsesGET /pet/findByTags?tagsDELETE /pet/{petId}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deletePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeletePet%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8033,7 +8049,7 @@ }, { "Goto": { - "PageNumber": 111, + "PageNumber": 114, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -8043,8 +8059,8 @@ ] }, { - "Number": 102, - "Text": "102 / 123| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples400Invalid ID supplied404Pet not foundGetPetByIdFind pet by IDReturns a single petRequestParametersNameTypeDefaultNotes*petIdID of pet to returnResponsesStatus CodeTypeDescriptionSamples200Petsuccessful operation400Invalid ID supplied404Pet not foundUpdatePetWithFormUpdates a pet in the store with form dataRequestGET /pet/{petId}POST /pet/{petId}", + "Number": 105, + "Text": "105 / 126| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples400Invalid ID supplied404Pet not foundGetPetByIdFind pet by IDReturns a single petRequestParametersNameTypeDefaultNotes*petIdID of pet to returnResponsesStatus CodeTypeDescriptionSamples200Petsuccessful operation400Invalid ID supplied404Pet not foundUpdatePetWithFormUpdates a pet in the store with form dataRequestGET /pet/{petId}POST /pet/{petId}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getPetById.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetPetById%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8084,7 +8100,7 @@ }, { "Goto": { - "PageNumber": 111, + "PageNumber": 114, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -8094,8 +8110,8 @@ ] }, { - "Number": 103, - "Text": "103 / 123| Improve this Doc\uF1C5View Source\uF1C5ParametersNameTypeDefaultNotes*petIdID of pet that needs to be updatednameUpdated name of the petstatusUpdated status of the petResponsesStatus CodeTypeDescriptionSamples405Invalid inputUploadFileuploads an imageRequestParametersNameTypeDefaultNotes*petIdID of pet to updateadditionalMetadataAdditional data to pass to serverfilefile to uploadResponsesStatus CodeTypeDescriptionSamples200ApiResponsesuccessful operationPOST /pet/{petId}/uploadImage", + "Number": 106, + "Text": "106 / 126| Improve this Doc\uF1C5View Source\uF1C5ParametersNameTypeDefaultNotes*petIdID of pet that needs to be updatednameUpdated name of the petstatusUpdated status of the petResponsesStatus CodeTypeDescriptionSamples405Invalid inputUploadFileuploads an imageRequestParametersNameTypeDefaultNotes*petIdID of pet to updateadditionalMetadataAdditional data to pass to serverfilefile to uploadResponsesStatus CodeTypeDescriptionSamples200ApiResponsesuccessful operationPOST /pet/{petId}/uploadImage", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_uploadFile.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FuploadFile%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8117,7 +8133,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 525.49969 @@ -8126,7 +8142,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 525.49969 @@ -8136,8 +8152,8 @@ ] }, { - "Number": 104, - "Text": "104 / 123| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5storeAccess to Petstore ordersAdditional description for store tagAddPetAdd a new pet to the storeRequestParametersNameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples405Invalid inputNOTE: Add pet only when you needs.GetInventoryReturns pet inventories by statusReturns a map of status codes to quantitiesRequestResponsesPOST /petGET /store/inventory", + "Number": 107, + "Text": "107 / 126| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5storeAccess to Petstore ordersAdditional description for store tagAddPetAdd a new pet to the storeRequestParametersNameTypeDefaultNotes*bodyPetPet object that needs to be added to the storeResponsesStatus CodeTypeDescriptionSamples405Invalid inputNOTE: Add pet only when you needs.GetInventoryReturns pet inventories by statusReturns a map of status codes to quantitiesRequestResponsesPOST /petGET /store/inventory", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_addPet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FaddPet%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8177,7 +8193,7 @@ }, { "Goto": { - "PageNumber": 111, + "PageNumber": 114, "Coordinates": { "Left": 28, "Top": 378.49969 @@ -8187,8 +8203,8 @@ ] }, { - "Number": 105, - "Text": "105 / 123| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples200objectsuccessful operationPlaceOrderPlace an order for a petRequestParametersNameTypeDefaultNotes*bodyOrderorder placed for purchasing the petResponsesStatus CodeTypeDescriptionSamples200Ordersuccessful operation400Invalid OrderDeleteOrderDelete purchase order by IDFor valid response try integer IDs with positive integer value. Negative or non-integer values willgenerate API errorsRequestParametersPOST /store/orderDELETE /store/order/{orderId}", + "Number": 108, + "Text": "108 / 126| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples200objectsuccessful operationPlaceOrderPlace an order for a petRequestParametersNameTypeDefaultNotes*bodyOrderorder placed for purchasing the petResponsesStatus CodeTypeDescriptionSamples200Ordersuccessful operation400Invalid OrderDeleteOrderDelete purchase order by IDFor valid response try integer IDs with positive integer value. Negative or non-integer values willgenerate API errorsRequestParametersPOST /store/orderDELETE /store/order/{orderId}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_placeOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FplaceOrder%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8228,7 +8244,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 361.24969 @@ -8237,7 +8253,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 361.24969 @@ -8247,8 +8263,8 @@ ] }, { - "Number": 106, - "Text": "106 / 123| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*orderIdID of the order that needs to be deletedResponsesStatus CodeTypeDescriptionSamples400Invalid ID supplied404Order not foundGetOrderByIdFind purchase order by IDFor valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptionsRequestParametersNameTypeDefaultNotes*orderIdID of pet that needs to be fetchedResponsesStatus CodeTypeDescriptionSamples200Ordersuccessful operation400Invalid ID supplied404Order not founduserGET /store/order/{orderId}", + "Number": 109, + "Text": "109 / 126| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*orderIdID of the order that needs to be deletedResponsesStatus CodeTypeDescriptionSamples400Invalid ID supplied404Order not foundGetOrderByIdFind purchase order by IDFor valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptionsRequestParametersNameTypeDefaultNotes*orderIdID of pet that needs to be fetchedResponsesStatus CodeTypeDescriptionSamples200Ordersuccessful operation400Invalid ID supplied404Order not founduserGET /store/order/{orderId}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getOrderById.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetOrderById%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8270,7 +8286,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 361.24969 @@ -8280,8 +8296,8 @@ ] }, { - "Number": 107, - "Text": "107 / 123| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Operations about userCreateUserCreate userThis can only be done by the logged in user.RequestParametersNameTypeDefaultNotes*bodyUserCreated user objectResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationCreateUsersWithArrayInputCreates list of users with given input arrayRequestParametersNameTypeDefaultNotes*bodyUser[]List of user objectResponsesPOST /userPOST /user/createWithArray", + "Number": 110, + "Text": "110 / 126| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Operations about userCreateUserCreate userThis can only be done by the logged in user.RequestParametersNameTypeDefaultNotes*bodyUserCreated user objectResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationCreateUsersWithArrayInputCreates list of users with given input arrayRequestParametersNameTypeDefaultNotes*bodyUser[]List of user objectResponsesPOST /userPOST /user/createWithArray", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUser%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8321,7 +8337,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 92.749695 @@ -8330,7 +8346,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 92.749695 @@ -8340,8 +8356,8 @@ ] }, { - "Number": 108, - "Text": "108 / 123| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamplesdefaultsuccessful operationCreateUsersWithListInputCreates list of users with given input arrayRequestParametersNameTypeDefaultNotes*bodyUser[]List of user objectResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationLoginUserLogs user into the systemRequestParametersNameTypeDefaultNotes*usernameThe user name for login*passwordThe password for login in clear textPOST /user/createWithListGET /user/login?username&password", + "Number": 111, + "Text": "111 / 126| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamplesdefaultsuccessful operationCreateUsersWithListInputCreates list of users with given input arrayRequestParametersNameTypeDefaultNotes*bodyUser[]List of user objectResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationLoginUserLogs user into the systemRequestParametersNameTypeDefaultNotes*usernameThe user name for login*passwordThe password for login in clear textPOST /user/createWithListGET /user/login?username&password", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithListInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithListInput%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8381,7 +8397,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 92.749695 @@ -8391,8 +8407,8 @@ ] }, { - "Number": 109, - "Text": "109 / 123| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5ResponsesStatus CodeTypeDescriptionSamples200stringsuccessful operation400Invalid username/password suppliedLogoutUserLogs out current logged in user sessionRequestResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationDeleteUserDelete userThis can only be done by the logged in user.RequestParametersNameTypeDefaultNotes*usernameThe name that needs to be deletedResponsesGET /user/logoutDELETE /user/{username}", + "Number": 112, + "Text": "112 / 126| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5ResponsesStatus CodeTypeDescriptionSamples200stringsuccessful operation400Invalid username/password suppliedLogoutUserLogs out current logged in user sessionRequestResponsesStatus CodeTypeDescriptionSamplesdefaultsuccessful operationDeleteUserDelete userThis can only be done by the logged in user.RequestParametersNameTypeDefaultNotes*usernameThe name that needs to be deletedResponsesGET /user/logoutDELETE /user/{username}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_logoutUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FlogoutUser%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8433,8 +8449,8 @@ ] }, { - "Number": 110, - "Text": "110 / 123| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples400Invalid username supplied404User not foundGetUserByNameGet user by user nameRequestParametersNameTypeDefaultNotes*usernameThe name that needs to be fetched. Use user1 for testing.ResponsesStatus CodeTypeDescriptionSamples200Usersuccessful operation400Invalid username supplied404User not foundOther APIsUpdateUserUpdated userThis can only be done by the logged in user.RequestGET /user/{username}", + "Number": 113, + "Text": "113 / 126| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5Status CodeTypeDescriptionSamples400Invalid username supplied404User not foundGetUserByNameGet user by user nameRequestParametersNameTypeDefaultNotes*usernameThe name that needs to be fetched. Use user1 for testing.ResponsesStatus CodeTypeDescriptionSamples200Usersuccessful operation400Invalid username supplied404User not foundOther APIsUpdateUserUpdated userThis can only be done by the logged in user.RequestGET /user/{username}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getUserByName.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetUserByName%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8474,7 +8490,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 92.749695 @@ -8484,12 +8500,12 @@ ] }, { - "Number": 111, - "Text": "111 / 123ParametersNameTypeDefaultNotes*usernamename that need to be updated*bodyUserUpdated user objectResponsesStatus CodeTypeDescriptionSamples400Invalid user supplied404User not foundDefinitionsPetNameTypeNotescategoryCategory[]idinteger (int64)namestringphotoUrlsarraystatusstringpet status in the storetagsTag[]CategoryPUT /user/{username}", + "Number": 114, + "Text": "114 / 126ParametersNameTypeDefaultNotes*usernamename that need to be updated*bodyUserUpdated user objectResponsesStatus CodeTypeDescriptionSamples400Invalid user supplied404User not foundDefinitionsPetNameTypeNotescategoryCategory[]idinteger (int64)namestringphotoUrlsarraystatusstringpet status in the storetagsTag[]CategoryPUT /user/{username}", "Links": [ { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 92.749695 @@ -8498,7 +8514,7 @@ }, { "Goto": { - "PageNumber": 111, + "PageNumber": 114, "Coordinates": { "Left": 28, "Top": 109.999695 @@ -8507,7 +8523,7 @@ }, { "Goto": { - "PageNumber": 112, + "PageNumber": 115, "Coordinates": { "Left": 28, "Top": 658.99969 @@ -8517,17 +8533,17 @@ ] }, { - "Number": 112, - "Text": "112 / 123NameTypeNotesidinteger (int64)namestringTagNameTypeNotesidinteger (int64)namestringApiResponseNameTypeNotescodeinteger (int32)messagestringtypestringOrderNameTypeNotescompletebooleanidinteger (int64)petIdinteger (int64)quantityinteger (int32)shipDatestring (date-time)statusstringOrder StatusUser", + "Number": 115, + "Text": "115 / 126NameTypeNotesidinteger (int64)namestringTagNameTypeNotesidinteger (int64)namestringApiResponseNameTypeNotescodeinteger (int32)messagestringtypestringOrderNameTypeNotescompletebooleanidinteger (int64)petIdinteger (int64)quantityinteger (int32)shipDatestring (date-time)statusstringOrder StatusUser", "Links": [] }, { - "Number": 113, - "Text": "113 / 123NameTypeNotesemailstringfirstNamestringidinteger (int64)lastNamestringpasswordstringphonestringuserStatusinteger (int32)User StatususernamestringSee AlsosSee other REST APIs:Contacts API", + "Number": 116, + "Text": "116 / 126NameTypeNotesemailstringfirstNamestringidinteger (int64)lastNamestringpasswordstringphonestringuserStatusinteger (int32)User StatususernamestringSee AlsosSee other REST APIs:Contacts API", "Links": [ { "Goto": { - "PageNumber": 114, + "PageNumber": 117, "Type": 2, "Coordinates": { "Top": 0 @@ -8537,8 +8553,8 @@ ] }, { - "Number": 114, - "Text": "114 / 123| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5ContactsGet ContactsYou can get a collection of contacts from your tenant.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*api-version1.6The version of the Graph API to target. Beginning with version 1.5, theapi-version string is represented in major.minor format. Prior releaseswere represented as date strings: '2013-11-08' and '2013-04-05'.Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. Theresults arereturned intheresponsebody.Mime type: application/jsonGet Contact By IdGet a contact by using the object ID.Required scope: Contacts.Read or Contacts.WriteGET /contacts?api-version{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObje \"value\": [ { \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\", \"deletionTimestamp\": null,", + "Number": 117, + "Text": "117 / 126| Improve this Doc\uF1C5View Source\uF1C5| Improve this Doc\uF1C5View Source\uF1C5ContactsGet ContactsYou can get a collection of contacts from your tenant.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*api-version1.6The version of the Graph API to target. Beginning with version 1.5, theapi-version string is represented in major.minor format. Prior releaseswere represented as date strings: '2013-11-08' and '2013-04-05'.Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. Theresults arereturned intheresponsebody.Mime type: application/jsonGet Contact By IdGet a contact by using the object ID.Required scope: Contacts.Read or Contacts.WriteGET /contacts?api-version{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObje \"value\": [ { \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\", \"deletionTimestamp\": null,", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contacts.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contacts%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8579,8 +8595,8 @@ ] }, { - "Number": 115, - "Text": "115 / 123| Improve this Doc\uF1C5View Source\uF1C5RequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6Specifies the version of the Graph API to target. Beginningwith version 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. Thecontact isreturned intheresponsebody.Mime type: application/jsonUpdate ContactChange a contact's properties.Required scope: Contacts.WriteRequestGET /contacts/{object_id}?api-version{ \"odata.metadata\": \"https://graph.windows.net/graphdir1.onmicrosoft.com/$metadata#di \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\", \"deletionTimestamp\": null, \"city\": null, \"companyName\": null,PATCH /contacts/{object_id}?api-version", + "Number": 118, + "Text": "118 / 126| Improve this Doc\uF1C5View Source\uF1C5RequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6Specifies the version of the Graph API to target. Beginningwith version 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. Thecontact isreturned intheresponsebody.Mime type: application/jsonUpdate ContactChange a contact's properties.Required scope: Contacts.WriteRequestGET /contacts/{object_id}?api-version{ \"odata.metadata\": \"https://graph.windows.net/graphdir1.onmicrosoft.com/$metadata#di \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\", \"deletionTimestamp\": null, \"city\": null, \"companyName\": null,PATCH /contacts/{object_id}?api-version", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_update_contact.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fupdate%20contact%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8603,8 +8619,8 @@ ] }, { - "Number": 116, - "Text": "116 / 123| Improve this Doc\uF1C5View Source\uF1C5ParametersNameTypeDefaultNotes*object_id7163f3b8-70c9-43d2-b9e1-4467ddaf087aThe object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.bodyparamcontactthis is request body, not real parameterResponsesStatus CodeTypeDescriptionSamples204No Content. Indicates success. No response body is returned.Delete ContactDelete a contact.Required scope: Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id7163f3b8-70c9-43d2-b9e1-4467ddaf087aThe object ID (GUID) of the target contact.api-version1.6Specifies the version of the Graph API to target. Beginningwith version 1.5, the api-version string is represented inDELETE /contacts/{object_id}[?api-version]", + "Number": 119, + "Text": "119 / 126| Improve this Doc\uF1C5View Source\uF1C5ParametersNameTypeDefaultNotes*object_id7163f3b8-70c9-43d2-b9e1-4467ddaf087aThe object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.bodyparamcontactthis is request body, not real parameterResponsesStatus CodeTypeDescriptionSamples204No Content. Indicates success. No response body is returned.Delete ContactDelete a contact.Required scope: Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id7163f3b8-70c9-43d2-b9e1-4467ddaf087aThe object ID (GUID) of the target contact.api-version1.6Specifies the version of the Graph API to target. Beginningwith version 1.5, the api-version string is represented inDELETE /contacts/{object_id}[?api-version]", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_delete_contact.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fdelete%20contact%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8626,7 +8642,7 @@ }, { "Goto": { - "PageNumber": 122, + "PageNumber": 125, "Coordinates": { "Left": 28, "Top": 467.00015 @@ -8636,8 +8652,8 @@ ] }, { - "Number": 117, - "Text": "117 / 123| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotesmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.ResponsesStatus CodeTypeDescriptionSamples204No Content. Indicates success.Get Contact Manager LinkGet a link to the contact's manager.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. AMime type: application/jsonGET /contacts/{object_id}/$links/manager?api-version", + "Number": 120, + "Text": "120 / 126| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotesmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.ResponsesStatus CodeTypeDescriptionSamples204No Content. Indicates success.Get Contact Manager LinkGet a link to the contact's manager.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.ResponsesStatusCodeTypeDescriptionSamples200OK.Indicatessuccess. AMime type: application/jsonGET /contacts/{object_id}/$links/manager?api-version", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_manager_link.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20manager%20link%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8660,8 +8676,8 @@ ] }, { - "Number": 118, - "Text": "118 / 123| Improve this Doc\uF1C5View Source\uF1C5StatusCodeTypeDescriptionSampleslink to thecontact'smanager isreturned.404Not Found.Therequestedresourcewas notfound. Thiscan occur ifthemanagerproperty isnotcurrentlyset for thespecifiedcontact. Itcan alsohave othercauses, forexample, abaddomain. Acode andassociatedmessage isreturnedwith theerror.Mime type: application/jsonUpdate Contact Manager{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObje \"url\": \"https://graph.windows.net/myorganization/directoryObjec4c4a-93b2-03f065fabd93/Microsoft.WindowsAzure.ActiveDirectory.Con}{ \"odata.error\": { \"code\": \"Request_ResourceNotFound\", \"message\": { \"lang\": \"en\", \"value\": \"Resource not found for the segment 'manager'.\" } }}", + "Number": 121, + "Text": "121 / 126| Improve this Doc\uF1C5View Source\uF1C5StatusCodeTypeDescriptionSampleslink to thecontact'smanager isreturned.404Not Found.Therequestedresourcewas notfound. Thiscan occur ifthemanagerproperty isnotcurrentlyset for thespecifiedcontact. Itcan alsohave othercauses, forexample, abaddomain. Acode andassociatedmessage isreturnedwith theerror.Mime type: application/jsonUpdate Contact Manager{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObje \"url\": \"https://graph.windows.net/myorganization/directoryObjec4c4a-93b2-03f065fabd93/Microsoft.WindowsAzure.ActiveDirectory.Con}{ \"odata.error\": { \"code\": \"Request_ResourceNotFound\", \"message\": { \"lang\": \"en\", \"value\": \"Resource not found for the segment 'manager'.\" } }}", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_update_contact_manager.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fupdate%20contact%20manager%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8684,8 +8700,8 @@ ] }, { - "Number": 119, - "Text": "119 / 123| Improve this Doc\uF1C5View Source\uF1C5Update the contact's managerRequired scope: Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.*bodyparamThe request body contains a single property thatspecifies the URL of the user or contact to add asmanager.ResponsesStatus CodeTypeDescriptionSamples204No Content. Indicates success. No response body is returned.Delete Contact Manager By IdDelete the contact's manager.Required scope: Contacts.WriteRequestParametersPUT /contacts/{object_id}/$links/manager?api-versionDELETE /contacts/{object_id}/$links/manager?api-version", + "Number": 122, + "Text": "122 / 126| Improve this Doc\uF1C5View Source\uF1C5Update the contact's managerRequired scope: Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.*bodyparamThe request body contains a single property thatspecifies the URL of the user or contact to add asmanager.ResponsesStatus CodeTypeDescriptionSamples204No Content. Indicates success. No response body is returned.Delete Contact Manager By IdDelete the contact's manager.Required scope: Contacts.WriteRequestParametersPUT /contacts/{object_id}/$links/manager?api-versionDELETE /contacts/{object_id}/$links/manager?api-version", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_delete_contact_manager_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fdelete%20contact%20manager%20by%20id%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8708,8 +8724,8 @@ ] }, { - "Number": 120, - "Text": "120 / 123| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.ResponsesStatus CodeTypeDescriptionSamples204No Content. Indicates success. N response body is returned.Get Contact Direct Reports LinksGet a links to the contact's direct reports.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.ResponsesGET /contacts/{object_id}/$links/directReports?api-version", + "Number": 123, + "Text": "123 / 126| Improve this Doc\uF1C5View Source\uF1C5NameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.ResponsesStatus CodeTypeDescriptionSamples204No Content. Indicates success. N response body is returned.Get Contact Direct Reports LinksGet a links to the contact's direct reports.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.ResponsesGET /contacts/{object_id}/$links/directReports?api-version", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_direct_reports_links.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20direct%20reports%20links%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8732,8 +8748,8 @@ ] }, { - "Number": 121, - "Text": "121 / 123| Improve this Doc\uF1C5View Source\uF1C5StatusCodeTypeDescriptionSamples200OK.Indicatessuccess.One ormore directreports arereturned.Mime type: application/jsonGet Contact MemberOf LinksGet a links to the contact's direct group and directory role memberships.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.Responses{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObje \"value\": [ { \"url\": \"https://graph.windows.net/myorganization/directoryOb24f-c830606ef41c/Microsoft.DirectoryServices.Contact\" } ]GET /contacts/{object_id}/$links/memberOf?api-version", + "Number": 124, + "Text": "124 / 126| Improve this Doc\uF1C5View Source\uF1C5StatusCodeTypeDescriptionSamples200OK.Indicatessuccess.One ormore directreports arereturned.Mime type: application/jsonGet Contact MemberOf LinksGet a links to the contact's direct group and directory role memberships.Required scope: Contacts.Read or Contacts.WriteRequestParametersNameTypeDefaultNotes*object_id31944231-fd52-4a7f-b32e-7902a01fddf9The object ID (GUID) of the target contact.*api-version1.6The version of the Graph API to target. Beginning withversion 1.5, the api-version string is represented inmajor.minor format. Prior releases were represented asdate strings: '2013-11-08' and '2013-04-05'. Required.Responses{ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObje \"value\": [ { \"url\": \"https://graph.windows.net/myorganization/directoryOb24f-c830606ef41c/Microsoft.DirectoryServices.Contact\" } ]GET /contacts/{object_id}/$links/memberOf?api-version", "Links": [ { "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_memberOf_links.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20memberOf%20links%0Asummary%3A%20%27*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax%27%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" @@ -8756,17 +8772,17 @@ ] }, { - "Number": 122, - "Text": "122 / 123StatusCodeTypeDescriptionSamples200OK.Indicatessuccess.One ormoregroupsand/ordirectoryroles arereturned.Mime type: application/jsonDefinitionsContactNameTypeNotesobjectTypestringobjectIdstringdeletionTimestampstring (date-time)citystringcountrystringdepartmentstringdirSyncEnabledbooleandisplayNamestringfacsimileTelephoneNumberstringgivenNamestringjobTitlestringlastDirSyncTimestring (date-time){ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObje \"value\": [ { \"url\": \"https://graph.windows.net/myorganization/directoryO47c9-a10e-a4bee353ce60/Microsoft.DirectoryServices.Group\" } ]", + "Number": 125, + "Text": "125 / 126StatusCodeTypeDescriptionSamples200OK.Indicatessuccess.One ormoregroupsand/ordirectoryroles arereturned.Mime type: application/jsonDefinitionsContactNameTypeNotesobjectTypestringobjectIdstringdeletionTimestampstring (date-time)citystringcountrystringdepartmentstringdirSyncEnabledbooleandisplayNamestringfacsimileTelephoneNumberstringgivenNamestringjobTitlestringlastDirSyncTimestring (date-time){ \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObje \"value\": [ { \"url\": \"https://graph.windows.net/myorganization/directoryO47c9-a10e-a4bee353ce60/Microsoft.DirectoryServices.Group\" } ]", "Links": [] }, { - "Number": 123, - "Text": "123 / 123NameTypeNotesmailstringmailNicknamestringmobilestringphysicalDeliveryOfficeNamestringpostalCodestringprovisioningErrorsProvisioningError[]proxyAddressesarraysipProxyAddressstringstatestringstreetAddressstringsurnamestringtelephoneNumberstringthumbnailPhotostringProvisioningErrorNameTypeNoteserrorDetailstringresolvedbooleanserviceInstancestringtimestampstring (date-time)", + "Number": 126, + "Text": "126 / 126NameTypeNotesmailstringmailNicknamestringmobilestringphysicalDeliveryOfficeNamestringpostalCodestringprovisioningErrorsProvisioningError[]proxyAddressesarraysipProxyAddressstringstatestringstreetAddressstringsurnamestringtelephoneNumberstringthumbnailPhotostringProvisioningErrorNameTypeNoteserrorDetailstringresolvedbooleanserviceInstancestringtimestampstring (date-time)", "Links": [ { "Goto": { - "PageNumber": 123, + "PageNumber": 126, "Coordinates": { "Left": 28, "Top": 320.75015 @@ -8775,7 +8791,7 @@ }, { "Goto": { - "PageNumber": 123, + "PageNumber": 126, "Coordinates": { "Left": 28, "Top": 320.75015 @@ -9231,7 +9247,7 @@ "Title": "ContainersRefType", "Children": [], "Destination": { - "PageNumber": 66, + "PageNumber": 67, "Type": 2, "Coordinates": { "Top": 0 @@ -9242,7 +9258,7 @@ "Title": "ContainersRefType.ColorType", "Children": [], "Destination": { - "PageNumber": 68, + "PageNumber": 70, "Type": 2, "Coordinates": { "Top": 0 @@ -9253,7 +9269,7 @@ "Title": "ContainersRefType.ContainersRefTypeChild", "Children": [], "Destination": { - "PageNumber": 69, + "PageNumber": 71, "Type": 2, "Coordinates": { "Top": 0 @@ -9264,7 +9280,7 @@ "Title": "ContainersRefType.ContainersRefTypeChildInterface", "Children": [], "Destination": { - "PageNumber": 70, + "PageNumber": 72, "Type": 2, "Coordinates": { "Top": 0 @@ -9275,7 +9291,7 @@ "Title": "ContainersRefType.ContainersRefTypeDelegate", "Children": [], "Destination": { - "PageNumber": 71, + "PageNumber": 73, "Type": 2, "Coordinates": { "Top": 0 @@ -9286,7 +9302,7 @@ "Title": "ExplicitLayoutClass", "Children": [], "Destination": { - "PageNumber": 72, + "PageNumber": 74, "Type": 2, "Coordinates": { "Top": 0 @@ -9297,7 +9313,7 @@ "Title": "Issue231", "Children": [], "Destination": { - "PageNumber": 73, + "PageNumber": 75, "Type": 2, "Coordinates": { "Top": 0 @@ -9306,7 +9322,7 @@ } ], "Destination": { - "PageNumber": 65, + "PageNumber": 66, "Type": 2, "Coordinates": { "Top": 0 @@ -9317,7 +9333,7 @@ "Title": "CatException", "Children": [], "Destination": { - "PageNumber": 74, + "PageNumber": 76, "Type": 2, "Coordinates": { "Top": 0 @@ -9328,7 +9344,7 @@ "Title": "Cat", "Children": [], "Destination": { - "PageNumber": 75, + "PageNumber": 77, "Type": 2, "Coordinates": { "Top": 0 @@ -9339,7 +9355,7 @@ "Title": "Complex", "Children": [], "Destination": { - "PageNumber": 84, + "PageNumber": 87, "Type": 2, "Coordinates": { "Top": 0 @@ -9350,7 +9366,7 @@ "Title": "FakeDelegate", "Children": [], "Destination": { - "PageNumber": 85, + "PageNumber": 88, "Type": 2, "Coordinates": { "Top": 0 @@ -9361,7 +9377,7 @@ "Title": "IAnimal", "Children": [], "Destination": { - "PageNumber": 86, + "PageNumber": 89, "Type": 2, "Coordinates": { "Top": 0 @@ -9372,7 +9388,7 @@ "Title": "ICat", "Children": [], "Destination": { - "PageNumber": 89, + "PageNumber": 92, "Type": 2, "Coordinates": { "Top": 0 @@ -9383,7 +9399,7 @@ "Title": "ICatExtension", "Children": [], "Destination": { - "PageNumber": 90, + "PageNumber": 93, "Type": 2, "Coordinates": { "Top": 0 @@ -9394,7 +9410,7 @@ "Title": "MRefDelegate", "Children": [], "Destination": { - "PageNumber": 92, + "PageNumber": 95, "Type": 2, "Coordinates": { "Top": 0 @@ -9405,7 +9421,7 @@ "Title": "MRefNormalDelegate", "Children": [], "Destination": { - "PageNumber": 93, + "PageNumber": 96, "Type": 2, "Coordinates": { "Top": 0 @@ -9416,7 +9432,7 @@ "Title": "Tom", "Children": [], "Destination": { - "PageNumber": 94, + "PageNumber": 97, "Type": 2, "Coordinates": { "Top": 0 @@ -9427,7 +9443,7 @@ "Title": "TomFromBaseClass", "Children": [], "Destination": { - "PageNumber": 96, + "PageNumber": 99, "Type": 2, "Coordinates": { "Top": 0 @@ -9436,7 +9452,7 @@ } ], "Destination": { - "PageNumber": 63, + "PageNumber": 64, "Type": 2, "Coordinates": { "Top": 0 @@ -9450,7 +9466,7 @@ "Title": "ColorType", "Children": [], "Destination": { - "PageNumber": 98, + "PageNumber": 101, "Type": 2, "Coordinates": { "Top": 0 @@ -9459,7 +9475,7 @@ } ], "Destination": { - "PageNumber": 97, + "PageNumber": 100, "Type": 2, "Coordinates": { "Top": 0 @@ -9482,7 +9498,7 @@ "Title": "Pet Store API", "Children": [], "Destination": { - "PageNumber": 99, + "PageNumber": 102, "Type": 2, "Coordinates": { "Top": 0 @@ -9493,7 +9509,7 @@ "Title": "Contacts API", "Children": [], "Destination": { - "PageNumber": 114, + "PageNumber": 117, "Type": 2, "Coordinates": { "Top": 0 @@ -9502,7 +9518,7 @@ } ], "Destination": { - "PageNumber": 99, + "PageNumber": 102, "Type": 2, "Coordinates": { "Top": 0 diff --git a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1152x648/api-CatLibrary.html-term-cat.verified.png b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1152x648/api-CatLibrary.html-term-cat.verified.png index 3fd52a3d9ad..59562bc4a96 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1152x648/api-CatLibrary.html-term-cat.verified.png +++ b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1152x648/api-CatLibrary.html-term-cat.verified.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33272ca0ba2da89a5a59fe16af70aaeaff987e8f764fbecfe79b6597092da907 -size 157496 +oid sha256:a882a169f93ad2789aa075bbea2d07544b75d1ed5afc51956e32eae2e4402945 +size 134995 diff --git a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.Cat-2.html-q-cat.verified.png b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.Cat-2.html-q-cat.verified.png index b2fcaedfd59..dcbeade8a43 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.Cat-2.html-q-cat.verified.png +++ b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.Cat-2.html-q-cat.verified.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e16b19a2de8f6b00c49ef28b1aa7c80d470c802a91cb30e8401c288e16858ae -size 862073 +oid sha256:22f7d21aef9b6ec3b954ea04a65a05da9bd0103f7aa2b808c2e74618885b16f6 +size 1015547 diff --git a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.html-term-cat.verified.png b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.html-term-cat.verified.png index c4df52dc99e..2ece0098186 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.html-term-cat.verified.png +++ b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.html-term-cat.verified.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c0568dd37ab792bc1074e48162e88c23b697ba8210e4feb5128742fb7028cc8a -size 480451 +oid sha256:d1c6fe269d6efcf3075804bd66ec94a83e05df7e73603a74428053dfb735d059 +size 480295 diff --git a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/375x812/api-CatLibrary.Cat-2.html-q-cat.verified.png b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/375x812/api-CatLibrary.Cat-2.html-q-cat.verified.png index 719f64aa328..612219a7d60 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/375x812/api-CatLibrary.Cat-2.html-q-cat.verified.png +++ b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/375x812/api-CatLibrary.Cat-2.html-q-cat.verified.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e59b80a333c3052cc1e4c174be339303f7898e3a8573514dc63d25a2ce94b13f -size 682340 +oid sha256:2d29ff28f289d514203f66e6d191290e4d822b426a8ed2d40476caf5768cc26c +size 888777 diff --git a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/375x812/api-CatLibrary.html-term-cat.verified.png b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/375x812/api-CatLibrary.html-term-cat.verified.png index 493e35a60e6..13a605b5af4 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/375x812/api-CatLibrary.html-term-cat.verified.png +++ b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/375x812/api-CatLibrary.html-term-cat.verified.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a0223753bd8491f7d8792cac64bbdc2d6367ac84529361a1784d4b0306b180d -size 695954 +oid sha256:6845d473e0429ede14c060b56fdd3ed7b93bd07ac387ca9185e5afaf3b56df2f +size 697298 diff --git a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/768x600/api-CatLibrary.html-term-cat.verified.png b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/768x600/api-CatLibrary.html-term-cat.verified.png index 1febb6aeef6..11ed5dc1ea4 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/768x600/api-CatLibrary.html-term-cat.verified.png +++ b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/768x600/api-CatLibrary.html-term-cat.verified.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d25e70cea3249241f881d6966b7629e13b95bc3d50f4b093a07286396e04d3b9 -size 116250 +oid sha256:942e5fd55e1412dc423b5c17cba017ff8a19727371900be4e6a1f23241d04b90 +size 116401 diff --git a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-CatLibrary.Cat-2.html-q-cat.verified.html b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-CatLibrary.Cat-2.html-q-cat.verified.html index c4dcdef9b97..abdb8e87f1c 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-CatLibrary.Cat-2.html-q-cat.verified.html +++ b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-CatLibrary.Cat-2.html-q-cat.verified.html @@ -6,7 +6,7 @@ - + @@ -626,7 +626,7 @@

      Field Value

      bool
      -
      +
      Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class
      @@ -663,7 +663,7 @@

      Property Value

      int
      -
      +
      Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class
      @@ -734,7 +734,7 @@

      Property Value

      string
      -
      +
      Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class
      @@ -948,7 +948,7 @@

      Event Type

      EventHandler
      -
      +
      Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class
      @@ -1060,15 +1060,15 @@

      Parameters

      lsr Cat<T, K>
      -
      +
      Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class
      rsr int
      -
      +
      Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class

      Returns

      int
      -
      +
      Here's main class of this Demo. You can see mostly type of article within this class and you for more detail, please see the remarks. this class is a template class. It has two Generic parameter. they are: T and K. The extension method of this class can refer to class
      diff --git a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-CatLibrary.html-term-cat.verified.html b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-CatLibrary.html-term-cat.verified.html index a62858c0a75..0427856810f 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-CatLibrary.html-term-cat.verified.html +++ b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-CatLibrary.html-term-cat.verified.html @@ -484,11 +484,6 @@
      In this article
      http:/localhost:8089/md/CatLibrary.ICat.html
      Interface ICat Namespace: CatLibrary Assembly: CatLibrary.dll Cat's interface public interface ICat : IAnimal Implements IAnimal Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType), ICatExtension.Sleep(ICat, long) eat eat event of cat. Every cat must implement this event. event EventHandler eat Event Type EventHandler...
      -
      - -
      http:/localhost:8089/api/CatLibrary.Cat-2.html
      -
      ... used for this parameter. Inheritance object Cat<T, K> Implements ICat IAnimal Inherited Members object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Examples Here's example of how to create an instance of this class. As T is limited with class and K is limited with struct. var a = new Cat(object, int)(); int catNumber = new int(); unsafe { a.GetFeetLength(catNumber); } As you see, here we bring in pointer so we need to add unsafe keyword. Remarks THIS is remarks overridden in MARKDWON file Constructors Cat() Default constructor. public Cat() Cat(string, out int, string, bool) It's a complex constructor. The parameter will have some attributes. public Cat(string nickName, out int age, string realName, bool isHealthy) Parameters nickName string it's string type. age int It's an out and ref parameter. realName str...
      -
      http:/localhost:8089/apipage/CatLibrary.Cat-2.html
      @@ -502,7 +497,7 @@
      In this article
      http:/localhost:8089/api/CatLibrary.ICat.html
      -
      Interface ICat Namespace CatLibrary Assembly CatLibrary.dll Cat's interface public interface ICat : IAnimal Inherited Members IAnimal.Name IAnimal.this[int] IAnimal.Eat() IAnimal.Eat<Tool>(Tool) IAnimal.Eat(string) Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Events eat eat event of cat. Every cat must implement this event. event EventHandler eat Event Type EventHandler...
      +
      Interface ICat Namespace CatLibrary Assembly CatLibrary.dll Cat's interface public interface ICat : IAnimal Inherited Members IAnimal.Name IAnimal.this[int] IAnimal.Eat() IAnimal.Eat<Tool>(Tool) IAnimal.Eat(string) Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Events eat eat event of cat. Every cat must implement this event. event EventHandler eat Event Type EventHandler Cat's interface...
      @@ -519,6 +514,11 @@
      In this article
      http:/localhost:8089/md/CatLibrary.ICatExtension.html
      ...on Namespace: CatLibrary Assembly: CatLibrary.dll It's the class that contains ICat interface's extension method. This class must be public and static. Also it shouldn't be a geneic class public static class ICatExtension Inheritance object ← ICatExtension Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods Play(ICat, ColorType) Extension method to let cat play public static void Play(this ICat icat, ContainersRefType.ColorType toy) Parameters icat ICat Cat toy ContainersRefType.ColorType Something to play Sleep(ICat, long) Extension method hint that how long the cat can sleep. public static void Sleep(this ICat icat, long hours) Parameters icat ICat The type will be extended. hours long The length of sleep....
      +
      + +
      http:/localhost:8089/api/CatLibrary.Cat-2.html
      +
      ... used for this parameter. Inheritance object Cat<T, K> Implements ICat IAnimal Inherited Members object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Extension Methods ICatExtension.Play(ICat, ContainersRefType.ColorType) ICatExtension.Sleep(ICat, long) Examples Here's example of how to create an instance of this class. As T is limited with class and K is limited with struct. var a = new Cat(object, int)(); int catNumber = new int(); unsafe { a.GetFeetLength(catNumber); } As you see, here we bring in pointer so we need to add unsafe keyword. Remarks THIS is remarks overridden in MARKDWON file Constructors Cat() Default constructor. public Cat() Cat(string, out int, string, bool) It's a complex constructor. The parameter will have some attributes. public Cat(string nickName, out int age, string realName, bool isHealthy) Parameters nickName string it's string type. age int It's an out and ref parameter. realName str...
      +