diff --git a/src/docfx/Models/BuildCommand.cs b/src/docfx/Models/BuildCommand.cs index 1bf2a05e0aa..5f1512c9d3e 100644 --- a/src/docfx/Models/BuildCommand.cs +++ b/src/docfx/Models/BuildCommand.cs @@ -29,7 +29,7 @@ public override int Execute(CommandContext context, BuildCommandOptions settings }); } - internal static void MergeOptionsToConfig(BuildCommandOptions options, BuildJsonConfig config, string configDirectory) + internal static void MergeOptionsToConfig(DefaultBuildCommandOptions options, BuildJsonConfig config, string configDirectory) { // base directory for content from command line is current directory // e.g. C:\folder1>docfx build folder2\docfx.json --content "*.cs" diff --git a/src/docfx/Models/BuildCommandOptions.cs b/src/docfx/Models/BuildCommandOptions.cs index 5accb2d7c52..7a02f13fce9 100644 --- a/src/docfx/Models/BuildCommandOptions.cs +++ b/src/docfx/Models/BuildCommandOptions.cs @@ -7,97 +7,13 @@ namespace Docfx; [Description("Generate client-only website combining API in YAML files and conceptual files")] -internal class BuildCommandOptions : LogOptions +internal class BuildCommandOptions : DefaultBuildCommandOptions { - [Description("Specify the output base directory")] - [CommandOption("-o|--output")] - public string OutputFolder { get; set; } - - [Description("Path to docfx.json")] - [CommandArgument(0, "[config]")] - public string ConfigFile { get; set; } - - [Description("Specify a list of global metadata in key value pairs (e.g. --metadata _appTitle=\"My App\" --metadata _disableContribution)")] - [CommandOption("-m|--metadata")] - public string[] Metadata { get; set; } - - [Description("Specify the urls of xrefmap used by content files.")] - [CommandOption("-x|--xref")] - [TypeConverter(typeof(ArrayOptionConverter))] - public IEnumerable XRefMaps { get; set; } - - [Description("Specify the template name to apply to. If not specified, output YAML file will not be transformed.")] - [CommandOption("-t|--template")] - [TypeConverter(typeof(ArrayOptionConverter))] - public IEnumerable Templates { get; set; } - - [Description("Specify which theme to use. By default 'default' theme is offered.")] - [CommandOption("--theme")] - [TypeConverter(typeof(ArrayOptionConverter))] - public IEnumerable Themes { get; set; } - [Description("Host the generated documentation to a website")] [CommandOption("-s|--serve")] public bool Serve { get; set; } - [Description("Specify the hostname of the hosted website (e.g., 'localhost' or '*')")] - [CommandOption("-n|--hostname")] - public string Host { get; set; } - - [Description("Specify the port of the hosted website")] - [CommandOption("-p|--port")] - public int? Port { get; set; } - [Description("Open a web browser when the hosted website starts.")] [CommandOption("--open-browser")] public bool OpenBrowser { get; set; } - - [Description("Open a file in a web browser when the hosted website starts.")] - [CommandOption("--open-file ")] - public string OpenFile { get; set; } - - [Description("Run in debug mode. With debug mode, raw model and view model will be exported automatically when it encounters error when applying templates. If not specified, it is false.")] - [CommandOption("--debug")] - public bool EnableDebugMode { get; set; } - - [Description("The output folder for files generated for debugging purpose when in debug mode. If not specified, it is ${TempPath}/docfx")] - [CommandOption("--debugOutput")] - public string OutputFolderForDebugFiles { get; set; } - - [Description("If set to true, data model to run template script will be extracted in .raw.model.json extension")] - [CommandOption("--exportRawModel")] - public bool ExportRawModel { get; set; } - - [Description("Specify the output folder for the raw model. If not set, the raw model will be generated to the same folder as the output documentation")] - [CommandOption("--rawModelOutputFolder")] - public string RawModelOutputFolder { get; set; } - - [Description("Specify the output folder for the view model. If not set, the view model will be generated to the same folder as the output documentation")] - [CommandOption("--viewModelOutputFolder")] - public string ViewModelOutputFolder { get; set; } - - [Description("If set to true, data model to apply template will be extracted in .view.model.json extension")] - [CommandOption("--exportViewModel")] - public bool ExportViewModel { get; set; } - - [Description("If set to true, template will not be actually applied to the documents. This option is always used with --exportRawModel or --exportViewModel is set so that only raw model files or view model files are generated.")] - [CommandOption("--dryRun")] - public bool DryRun { get; set; } - - [Description("Set the max parallelism, 0 is auto.")] - [CommandOption("--maxParallelism")] - public int? MaxParallelism { get; set; } - - [Description("Set the parameters for markdown engine, value should be a JSON string.")] - [CommandOption("--markdownEngineProperties")] - public string MarkdownEngineProperties { get; set; } - - [Description("Set the order of post processors in plugins")] - [CommandOption("--postProcessors")] - [TypeConverter(typeof(ArrayOptionConverter))] - public IEnumerable PostProcessors { get; set; } - - [Description("Disable fetching Git related information for articles. By default it is enabled and may have side effect on performance when the repo is large.")] - [CommandOption("--disableGitFeatures")] - public bool DisableGitFeatures { get; set; } } diff --git a/src/docfx/Models/DefaultBuildCommandOptions.cs b/src/docfx/Models/DefaultBuildCommandOptions.cs new file mode 100644 index 00000000000..35781a2a153 --- /dev/null +++ b/src/docfx/Models/DefaultBuildCommandOptions.cs @@ -0,0 +1,94 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.ComponentModel; +using Spectre.Console.Cli; + +namespace Docfx; + +internal class DefaultBuildCommandOptions : LogOptions +{ + [Description("Specify the output base directory")] + [CommandOption("-o|--output")] + public string OutputFolder { get; set; } + + [Description("Path to docfx.json")] + [CommandArgument(0, "[config]")] + public string ConfigFile { get; set; } + + [Description("Specify a list of global metadata in key value pairs (e.g. --metadata _appTitle=\"My App\" --metadata _disableContribution)")] + [CommandOption("-m|--metadata")] + public string[] Metadata { get; set; } + + [Description("Specify the urls of xrefmap used by content files.")] + [CommandOption("-x|--xref")] + [TypeConverter(typeof(ArrayOptionConverter))] + public IEnumerable XRefMaps { get; set; } + + [Description("Specify the template name to apply to. If not specified, output YAML file will not be transformed.")] + [CommandOption("-t|--template")] + [TypeConverter(typeof(ArrayOptionConverter))] + public IEnumerable Templates { get; set; } + + [Description("Specify which theme to use. By default 'default' theme is offered.")] + [CommandOption("--theme")] + [TypeConverter(typeof(ArrayOptionConverter))] + public IEnumerable Themes { get; set; } + + [Description("Specify the hostname of the hosted website (e.g., 'localhost' or '*')")] + [CommandOption("-n|--hostname")] + public string Host { get; set; } + + [Description("Specify the port of the hosted website")] + [CommandOption("-p|--port")] + public int? Port { get; set; } + + [Description("Open a file in a web browser when the hosted website starts.")] + [CommandOption("--open-file ")] + public string OpenFile { get; set; } + + [Description("Run in debug mode. With debug mode, raw model and view model will be exported automatically when it encounters error when applying templates. If not specified, it is false.")] + [CommandOption("--debug")] + public bool EnableDebugMode { get; set; } + + [Description("The output folder for files generated for debugging purpose when in debug mode. If not specified, it is ${TempPath}/docfx")] + [CommandOption("--debugOutput")] + public string OutputFolderForDebugFiles { get; set; } + + [Description("If set to true, data model to run template script will be extracted in .raw.model.json extension")] + [CommandOption("--exportRawModel")] + public bool ExportRawModel { get; set; } + + [Description("Specify the output folder for the raw model. If not set, the raw model will be generated to the same folder as the output documentation")] + [CommandOption("--rawModelOutputFolder")] + public string RawModelOutputFolder { get; set; } + + [Description("Specify the output folder for the view model. If not set, the view model will be generated to the same folder as the output documentation")] + [CommandOption("--viewModelOutputFolder")] + public string ViewModelOutputFolder { get; set; } + + [Description("If set to true, data model to apply template will be extracted in .view.model.json extension")] + [CommandOption("--exportViewModel")] + public bool ExportViewModel { get; set; } + + [Description("If set to true, template will not be actually applied to the documents. This option is always used with --exportRawModel or --exportViewModel is set so that only raw model files or view model files are generated.")] + [CommandOption("--dryRun")] + public bool DryRun { get; set; } + + [Description("Set the max parallelism, 0 is auto.")] + [CommandOption("--maxParallelism")] + public int? MaxParallelism { get; set; } + + [Description("Set the parameters for markdown engine, value should be a JSON string.")] + [CommandOption("--markdownEngineProperties")] + public string MarkdownEngineProperties { get; set; } + + [Description("Set the order of post processors in plugins")] + [CommandOption("--postProcessors")] + [TypeConverter(typeof(ArrayOptionConverter))] + public IEnumerable PostProcessors { get; set; } + + [Description("Disable fetching Git related information for articles. By default it is enabled and may have side effect on performance when the repo is large.")] + [CommandOption("--disableGitFeatures")] + public bool DisableGitFeatures { get; set; } +} diff --git a/src/docfx/Models/WatchCommand.cs b/src/docfx/Models/WatchCommand.cs new file mode 100644 index 00000000000..c1f9d0805f7 --- /dev/null +++ b/src/docfx/Models/WatchCommand.cs @@ -0,0 +1,174 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using Docfx.Common; +using Spectre.Console.Cli; + +namespace Docfx; + +internal class WatchCommand : Command +{ + public override int Execute(CommandContext context, WatchCommandOptions settings) + { + return CommandHelper.Run(settings, () => + { + var (config, baseDirectory) = Docset.GetConfig(settings.ConfigFile); + BuildCommand.MergeOptionsToConfig(settings, config.build, baseDirectory); + var conf = new BuildOptions(); + var serveDirectory = RunBuild.Exec(config.build, conf, baseDirectory, settings.OutputFolder); + + void onChange() + { + RunBuild.Exec(config.build, conf, baseDirectory, settings.OutputFolder); + } + + // always do an initial rendering to start from something + onChange(); + + if (!settings.NoServe) + { + using var watcher = Watch(baseDirectory, config.build, onChange); + Serve(serveDirectory, settings.Host, settings.Port, settings.OpenBrowser, settings.OpenFile); + } + else + { + using var watcher = Watch(baseDirectory, config.build, onChange); + + // just block but here we can't use the host mecanism + // since we didn't start the server so use console one + using var canceller = new CancellationTokenSource(); + Console.CancelKeyPress += (sender, args) => canceller.Cancel(); + Task.Delay(Timeout.Infinite, canceller.Token).Wait(); + } + }); + } + + internal void Serve(string serveDirectory, string host, int? port, bool openBrowser, string openFile) { + if (CommandHelper.IsTcpPortAlreadyUsed(host, port)) + { + Logger.LogError($"Serve option specified. But TCP port {port ?? 8080} is already being in use."); + return; + } + RunServe.Exec(serveDirectory, host, port, openBrowser, openFile); + } + + // For now it is a simplistic implementation, in particular on the glob to filter mappping + // but it should be sufficient for most cases. + internal static IDisposable Watch(string baseDir, BuildJsonConfig config, Action onChange) + { + FileSystemWatcher watcher = new(baseDir) + { + IncludeSubdirectories = true, + NotifyFilter = NotifyFilters.Attributes | NotifyFilters.Size | NotifyFilters.FileName | + NotifyFilters.DirectoryName | NotifyFilters.LastWrite + }; + + if (WatchAll(config)) + { + watcher.Filters.Add("*.*"); + } + else + { + RegisterFiles(watcher, config.Content); + RegisterFiles(watcher, config.Resource); + + IEnumerable forcedFiles = ["docfx.json", "*.md", "toc.yml"]; + foreach (var forcedFile in forcedFiles) + { + if (!watcher.Filters.Any(f => f == forcedFile)) + { + watcher.Filters.Add(forcedFile); + } + } + } + + // avoid to call onChange() in chain so await "last" event before re-rendering + var cancellation = new CancellationTokenSource[] { null }; + async void debounce() + { + var token = new CancellationTokenSource(); + lock (cancellation) + { + ResetToken(cancellation); + cancellation[0] = token; + } + + await Task.Delay(100, token.Token); + if (!token.IsCancellationRequested) + { + onChange(); + } + } + + watcher.Changed += (_, _) => debounce(); + watcher.Created += (_, _) => debounce(); + watcher.Deleted += (_, _) => debounce(); + watcher.Renamed += (_, _) => debounce(); + watcher.EnableRaisingEvents = true; + + return new DisposableAction(() => + { + watcher.Dispose(); + lock (cancellation) + { + ResetToken(cancellation); + } + }); + } + + private static void ResetToken(CancellationTokenSource[] cancellation) + { + var token = cancellation[0]; + if (token is not null && !token.IsCancellationRequested) + { + token.Cancel(); + token.Dispose(); + } + } + + internal static bool WatchAll(BuildJsonConfig config) + { + return ((IEnumerable)[config.Resource, config.Content]) + .Where(it => it is not null) + .SelectMany(it => it.Items) + .SelectMany(it => it.Files) + .Any(it => it.EndsWith("**")); + } + + internal static void RegisterFiles(FileSystemWatcher watcher, FileMapping content) + { + foreach (var pattern in content? + .Items? + .SelectMany(it => it.Files) + .SelectMany(SanitizePatternForWatcher) + .Distinct() + .ToList()) + { + watcher.Filters.Add(pattern); + } + } + + // as of now it can list too much files but will less hurt to render more often with deboucning + // than not rendering when needed. + internal static IEnumerable SanitizePatternForWatcher(string file) + { + var name = file[(file.LastIndexOf('.') + 1)..]; // "**/images/**/*.png" => "*.png" + if (name.EndsWith('}')) // "**/*.{md,yml}" => "*.md" and "*.yml" + { + var start = name.IndexOf('{'); + if (start > 0) + { + var prefix = file[0..start]; + return file[(start + 1)..^1] + .Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries) + .Select(extension => $"{prefix}{extension}"); + } + } + return [name]; + } + + internal class DisposableAction(Action action) : IDisposable + { + public void Dispose() => action(); + } +} diff --git a/src/docfx/Models/WatchCommandOptions.cs b/src/docfx/Models/WatchCommandOptions.cs new file mode 100644 index 00000000000..f2847027924 --- /dev/null +++ b/src/docfx/Models/WatchCommandOptions.cs @@ -0,0 +1,21 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.ComponentModel; +using Spectre.Console.Cli; + +namespace Docfx; + +[Description("Generate client-only website combining API in YAML files and conceptual files and watch them for changes")] +internal class WatchCommandOptions : DefaultBuildCommandOptions +{ + [Description("Host the generated documentation to a website")] + [CommandOption("--no-serve")] + [DefaultValue("true")] + public bool NoServe { get; set; } + + [Description("Open a web browser when the hosted website starts.")] + [CommandOption("--open-browser")] + [DefaultValue("false")] + public bool OpenBrowser { get; set; } +} diff --git a/src/docfx/Program.cs b/src/docfx/Program.cs index 03df088dd6e..6e7d45a0fc7 100644 --- a/src/docfx/Program.cs +++ b/src/docfx/Program.cs @@ -25,6 +25,7 @@ internal static int Main(string[] args) config.AddCommand("build"); config.AddCommand("metadata"); config.AddCommand("serve"); + config.AddCommand("watch"); config.AddCommand("pdf"); config.AddBranch("template", template => { diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json deleted file mode 100644 index de79d905e9e..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json +++ /dev/null @@ -1,1105 +0,0 @@ -{ - "uid": "CSharp10.ConstantInterpolatedStrings", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CSharp10.ConstantInterpolatedStrings.S1", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ConstantInterpolatedStrings", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "S1" - }, - { - "lang": "vb", - "value": "S1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ConstantInterpolatedStrings.S1" - }, - { - "lang": "vb", - "value": "ConstantInterpolatedStrings.S1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ConstantInterpolatedStrings.S1" - }, - { - "lang": "vb", - "value": "CSharp10.ConstantInterpolatedStrings.S1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public const string S1 = \"Hello world\"" - }, - { - "lang": "vb", - "value": "Public Const S1 As String = \"Hello world\"" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "S1", - "path": "src/CSharp10.cs", - "startLine": 22.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ConstantInterpolatedStrings_S1.md&value=---%0Auid%3A%20CSharp10.ConstantInterpolatedStrings.S1%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L23", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ConstantInterpolatedStrings_S1", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.ConstantInterpolatedStrings.S2", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ConstantInterpolatedStrings", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "S2" - }, - { - "lang": "vb", - "value": "S2" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ConstantInterpolatedStrings.S2" - }, - { - "lang": "vb", - "value": "ConstantInterpolatedStrings.S2" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ConstantInterpolatedStrings.S2" - }, - { - "lang": "vb", - "value": "CSharp10.ConstantInterpolatedStrings.S2" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public const string S2 = \"Hello World\"" - }, - { - "lang": "vb", - "value": "Public Const S2 As String = \"Hello World\"" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "S2", - "path": "src/CSharp10.cs", - "startLine": 23.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ConstantInterpolatedStrings_S2.md&value=---%0Auid%3A%20CSharp10.ConstantInterpolatedStrings.S2%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L24", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ConstantInterpolatedStrings_S2", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.ConstantInterpolatedStrings.S3", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ConstantInterpolatedStrings", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "S3" - }, - { - "lang": "vb", - "value": "S3" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ConstantInterpolatedStrings.S3" - }, - { - "lang": "vb", - "value": "ConstantInterpolatedStrings.S3" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ConstantInterpolatedStrings.S3" - }, - { - "lang": "vb", - "value": "CSharp10.ConstantInterpolatedStrings.S3" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public const string S3 = \"Hello world Kevin, welcome to the team!\"" - }, - { - "lang": "vb", - "value": "Public Const S3 As String = \"Hello world Kevin, welcome to the team!\"" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "S3", - "path": "src/CSharp10.cs", - "startLine": 24.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ConstantInterpolatedStrings_S3.md&value=---%0Auid%3A%20CSharp10.ConstantInterpolatedStrings.S3%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L25", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ConstantInterpolatedStrings_S3", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ConstantInterpolatedStrings" - }, - { - "lang": "vb", - "value": "ConstantInterpolatedStrings" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ConstantInterpolatedStrings" - }, - { - "lang": "vb", - "value": "ConstantInterpolatedStrings" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ConstantInterpolatedStrings" - }, - { - "lang": "vb", - "value": "CSharp10.ConstantInterpolatedStrings" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ConstantInterpolatedStrings", - "path": "src/CSharp10.cs", - "startLine": 20.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class ConstantInterpolatedStrings" - }, - { - "lang": "vb", - "value": "Public Class ConstantInterpolatedStrings" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp10.ConstantInterpolatedStrings.yml", - "_path": "api/CSharp10.ConstantInterpolatedStrings.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ConstantInterpolatedStrings.md&value=---%0Auid%3A%20CSharp10.ConstantInterpolatedStrings%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L21", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ConstantInterpolatedStrings", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json deleted file mode 100644 index 7ab742996db..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json +++ /dev/null @@ -1,833 +0,0 @@ -{ - "uid": "CSharp10.Issue7737", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp10.Issue7737.Foo", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.Issue7737", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Foo()" - }, - { - "lang": "vb", - "value": "Foo()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue7737.Foo()" - }, - { - "lang": "vb", - "value": "Issue7737.Foo()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.Issue7737.Foo()" - }, - { - "lang": "vb", - "value": "CSharp10.Issue7737.Foo()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Foo()" - }, - { - "lang": "vb", - "value": "Public Sub Foo()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Foo", - "path": "src/CSharp10.cs", - "startLine": 32.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "example": [], - "overload": { - "uid": "CSharp10.Issue7737.Foo*", - "name": [ - { - "lang": "csharp", - "value": "Foo" - }, - { - "lang": "vb", - "value": "Foo" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue7737.Foo" - }, - { - "lang": "vb", - "value": "Issue7737.Foo" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.Issue7737.Foo" - }, - { - "lang": "vb", - "value": "CSharp10.Issue7737.Foo" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_Issue7737_Foo_" - }, - "level": 0.0, - "type": "method", - "summary": "

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_Issue7737_Foo.md&value=---%0Auid%3A%20CSharp10.Issue7737.Foo%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L33", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CSharp10_Issue7737_Foo", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Issue7737" - }, - { - "lang": "vb", - "value": "Issue7737" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue7737" - }, - { - "lang": "vb", - "value": "Issue7737" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.Issue7737" - }, - { - "lang": "vb", - "value": "CSharp10.Issue7737" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue7737", - "path": "src/CSharp10.cs", - "startLine": 27.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Issue7737" - }, - { - "lang": "vb", - "value": "Public Class Issue7737" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp10.Issue7737.yml", - "_path": "api/CSharp10.Issue7737.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_Issue7737.md&value=---%0Auid%3A%20CSharp10.Issue7737%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L28", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_Issue7737", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json deleted file mode 100644 index 45ee43fbb50..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json +++ /dev/null @@ -1,1241 +0,0 @@ -{ - "uid": "CSharp10.ParameterlessStructConstructors", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CSharp10.ParameterlessStructConstructors.#ctor", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ParameterlessStructConstructors", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors()" - }, - { - "lang": "vb", - "value": "New()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors.ParameterlessStructConstructors()" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors.New()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ParameterlessStructConstructors.ParameterlessStructConstructors()" - }, - { - "lang": "vb", - "value": "CSharp10.ParameterlessStructConstructors.New()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public ParameterlessStructConstructors()" - }, - { - "lang": "vb", - "value": "Public Sub New()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "src/CSharp10.cs", - "startLine": 14.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.ParameterlessStructConstructors.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors.ParameterlessStructConstructors" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ParameterlessStructConstructors.ParameterlessStructConstructors" - }, - { - "lang": "vb", - "value": "CSharp10.ParameterlessStructConstructors.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_ParameterlessStructConstructors__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ParameterlessStructConstructors__ctor.md&value=---%0Auid%3A%20CSharp10.ParameterlessStructConstructors.%23ctor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L15", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ParameterlessStructConstructors__ctor", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CSharp10.ParameterlessStructConstructors.X", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ParameterlessStructConstructors", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "X" - }, - { - "lang": "vb", - "value": "X" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors.X" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors.X" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ParameterlessStructConstructors.X" - }, - { - "lang": "vb", - "value": "CSharp10.ParameterlessStructConstructors.X" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public int X" - }, - { - "lang": "vb", - "value": "Public X As Integer" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "X", - "path": "src/CSharp10.cs", - "startLine": 10.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ParameterlessStructConstructors_X.md&value=---%0Auid%3A%20CSharp10.ParameterlessStructConstructors.X%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L11", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ParameterlessStructConstructors_X", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp10.ParameterlessStructConstructors.Description", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ParameterlessStructConstructors", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Description" - }, - { - "lang": "vb", - "value": "Description" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors.Description" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors.Description" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ParameterlessStructConstructors.Description" - }, - { - "lang": "vb", - "value": "CSharp10.ParameterlessStructConstructors.Description" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string Description { readonly get; init; }" - }, - { - "lang": "vb", - "value": "Public Property Description As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Description", - "path": "src/CSharp10.cs", - "startLine": 12.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.ParameterlessStructConstructors.Description*", - "name": [ - { - "lang": "csharp", - "value": "Description" - }, - { - "lang": "vb", - "value": "Description" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors.Description" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors.Description" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ParameterlessStructConstructors.Description" - }, - { - "lang": "vb", - "value": "CSharp10.ParameterlessStructConstructors.Description" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_ParameterlessStructConstructors_Description_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ParameterlessStructConstructors_Description.md&value=---%0Auid%3A%20CSharp10.ParameterlessStructConstructors.Description%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L13", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ParameterlessStructConstructors_Description", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.ParameterlessStructConstructors.Y", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ParameterlessStructConstructors", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Y" - }, - { - "lang": "vb", - "value": "Y" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors.Y" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors.Y" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ParameterlessStructConstructors.Y" - }, - { - "lang": "vb", - "value": "CSharp10.ParameterlessStructConstructors.Y" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public int Y { readonly get; set; }" - }, - { - "lang": "vb", - "value": "Public Property Y As Integer" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Y", - "path": "src/CSharp10.cs", - "startLine": 11.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.ParameterlessStructConstructors.Y*", - "name": [ - { - "lang": "csharp", - "value": "Y" - }, - { - "lang": "vb", - "value": "Y" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors.Y" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors.Y" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ParameterlessStructConstructors.Y" - }, - { - "lang": "vb", - "value": "CSharp10.ParameterlessStructConstructors.Y" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_ParameterlessStructConstructors_Y_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ParameterlessStructConstructors_Y.md&value=---%0Auid%3A%20CSharp10.ParameterlessStructConstructors.Y%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L12", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ParameterlessStructConstructors_Y", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ParameterlessStructConstructors" - }, - { - "lang": "vb", - "value": "CSharp10.ParameterlessStructConstructors" - } - ], - "type": "struct", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ParameterlessStructConstructors", - "path": "src/CSharp10.cs", - "startLine": 8.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public struct ParameterlessStructConstructors" - }, - { - "lang": "vb", - "value": "Public Structure ParameterlessStructConstructors" - } - ] - }, - "level": 0.0, - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp10.ParameterlessStructConstructors.yml", - "_path": "api/CSharp10.ParameterlessStructConstructors.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ParameterlessStructConstructors.md&value=---%0Auid%3A%20CSharp10.ParameterlessStructConstructors%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L9", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ParameterlessStructConstructors", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json deleted file mode 100644 index 0abcbe11a26..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json +++ /dev/null @@ -1,1464 +0,0 @@ -{ - "uid": "CSharp10.ReadOnlyRecordStruct", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CSharp10.ReadOnlyRecordStruct.#ctor(System.Double,System.Double,System.Double)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ReadOnlyRecordStruct", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct(double, double, double)" - }, - { - "lang": "vb", - "value": "New(Double, Double, Double)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct.ReadOnlyRecordStruct(double, double, double)" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct.New(Double, Double, Double)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ReadOnlyRecordStruct.ReadOnlyRecordStruct(double, double, double)" - }, - { - "lang": "vb", - "value": "CSharp10.ReadOnlyRecordStruct.New(Double, Double, Double)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public ReadOnlyRecordStruct(double X, double Y, double Z)" - }, - { - "lang": "vb", - "value": "Public Sub New(X As Double, Y As Double, Z As Double)" - } - ], - "parameters": [ - { - "id": "X", - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "Y", - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "Z", - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "src/CSharp10.cs", - "startLine": 2.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.ReadOnlyRecordStruct.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct.ReadOnlyRecordStruct" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ReadOnlyRecordStruct.ReadOnlyRecordStruct" - }, - { - "lang": "vb", - "value": "CSharp10.ReadOnlyRecordStruct.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_ReadOnlyRecordStruct__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ReadOnlyRecordStruct__ctor_System_Double_System_Double_System_Double_.md&value=---%0Auid%3A%20CSharp10.ReadOnlyRecordStruct.%23ctor(System.Double%2CSystem.Double%2CSystem.Double)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L3", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ReadOnlyRecordStruct__ctor_System_Double_System_Double_System_Double_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp10.ReadOnlyRecordStruct.X", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ReadOnlyRecordStruct", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "X" - }, - { - "lang": "vb", - "value": "X" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct.X" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct.X" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ReadOnlyRecordStruct.X" - }, - { - "lang": "vb", - "value": "CSharp10.ReadOnlyRecordStruct.X" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public double X { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property X As Double" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "X", - "path": "src/CSharp10.cs", - "startLine": 2.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.ReadOnlyRecordStruct.X*", - "name": [ - { - "lang": "csharp", - "value": "X" - }, - { - "lang": "vb", - "value": "X" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct.X" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct.X" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ReadOnlyRecordStruct.X" - }, - { - "lang": "vb", - "value": "CSharp10.ReadOnlyRecordStruct.X" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_ReadOnlyRecordStruct_X_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ReadOnlyRecordStruct_X.md&value=---%0Auid%3A%20CSharp10.ReadOnlyRecordStruct.X%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L3", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ReadOnlyRecordStruct_X", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.ReadOnlyRecordStruct.Y", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ReadOnlyRecordStruct", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Y" - }, - { - "lang": "vb", - "value": "Y" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct.Y" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct.Y" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ReadOnlyRecordStruct.Y" - }, - { - "lang": "vb", - "value": "CSharp10.ReadOnlyRecordStruct.Y" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public double Y { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property Y As Double" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Y", - "path": "src/CSharp10.cs", - "startLine": 2.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.ReadOnlyRecordStruct.Y*", - "name": [ - { - "lang": "csharp", - "value": "Y" - }, - { - "lang": "vb", - "value": "Y" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct.Y" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct.Y" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ReadOnlyRecordStruct.Y" - }, - { - "lang": "vb", - "value": "CSharp10.ReadOnlyRecordStruct.Y" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_ReadOnlyRecordStruct_Y_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ReadOnlyRecordStruct_Y.md&value=---%0Auid%3A%20CSharp10.ReadOnlyRecordStruct.Y%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L3", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ReadOnlyRecordStruct_Y", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.ReadOnlyRecordStruct.Z", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.ReadOnlyRecordStruct", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Z" - }, - { - "lang": "vb", - "value": "Z" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct.Z" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct.Z" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ReadOnlyRecordStruct.Z" - }, - { - "lang": "vb", - "value": "CSharp10.ReadOnlyRecordStruct.Z" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public double Z { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property Z As Double" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Z", - "path": "src/CSharp10.cs", - "startLine": 2.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.ReadOnlyRecordStruct.Z*", - "name": [ - { - "lang": "csharp", - "value": "Z" - }, - { - "lang": "vb", - "value": "Z" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct.Z" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct.Z" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ReadOnlyRecordStruct.Z" - }, - { - "lang": "vb", - "value": "CSharp10.ReadOnlyRecordStruct.Z" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_ReadOnlyRecordStruct_Z_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ReadOnlyRecordStruct_Z.md&value=---%0Auid%3A%20CSharp10.ReadOnlyRecordStruct.Z%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L3", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ReadOnlyRecordStruct_Z", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ReadOnlyRecordStruct" - }, - { - "lang": "vb", - "value": "CSharp10.ReadOnlyRecordStruct" - } - ], - "type": "struct", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ReadOnlyRecordStruct", - "path": "src/CSharp10.cs", - "startLine": 2.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public readonly record struct ReadOnlyRecordStruct : IEquatable" - }, - { - "lang": "vb", - "value": "Public Structure ReadOnlyRecordStruct Implements IEquatable(Of ReadOnlyRecordStruct)" - } - ] - }, - "level": 0.0, - "implements": [ - { - "uid": "System.IEquatable{CSharp10.ReadOnlyRecordStruct}", - "definition": "System.IEquatable`1", - "name": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of ReadOnlyRecordStruct)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of ReadOnlyRecordStruct)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.IEquatable" - }, - { - "lang": "vb", - "value": "System.IEquatable(Of CSharp10.ReadOnlyRecordStruct)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IEquatable<ReadOnlyRecordStruct>" - }, - { - "lang": "vb", - "value": "IEquatable(Of ReadOnlyRecordStruct)" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp10.ReadOnlyRecordStruct.yml", - "_path": "api/CSharp10.ReadOnlyRecordStruct.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_ReadOnlyRecordStruct.md&value=---%0Auid%3A%20CSharp10.ReadOnlyRecordStruct%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L3", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "example": "", - "seealso": [], - "id": "CSharp10_ReadOnlyRecordStruct", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json deleted file mode 100644 index faed9c9445f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json +++ /dev/null @@ -1,1339 +0,0 @@ -{ - "uid": "CSharp10.RecordClass", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CSharp10.RecordClass.#ctor(System.String,System.String)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.RecordClass", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "RecordClass(string, string)" - }, - { - "lang": "vb", - "value": "New(String, String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordClass.RecordClass(string, string)" - }, - { - "lang": "vb", - "value": "RecordClass.New(String, String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordClass.RecordClass(string, string)" - }, - { - "lang": "vb", - "value": "CSharp10.RecordClass.New(String, String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public RecordClass(string FirstName, string LastName)" - }, - { - "lang": "vb", - "value": "Public Sub New(FirstName As String, LastName As String)" - } - ], - "parameters": [ - { - "id": "FirstName", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "LastName", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "src/CSharp10.cs", - "startLine": 6.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.RecordClass.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "RecordClass" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordClass.RecordClass" - }, - { - "lang": "vb", - "value": "RecordClass.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordClass.RecordClass" - }, - { - "lang": "vb", - "value": "CSharp10.RecordClass.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_RecordClass__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_RecordClass__ctor_System_String_System_String_.md&value=---%0Auid%3A%20CSharp10.RecordClass.%23ctor(System.String%2CSystem.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L7", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_RecordClass__ctor_System_String_System_String_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp10.RecordClass.FirstName", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.RecordClass", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "FirstName" - }, - { - "lang": "vb", - "value": "FirstName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordClass.FirstName" - }, - { - "lang": "vb", - "value": "RecordClass.FirstName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordClass.FirstName" - }, - { - "lang": "vb", - "value": "CSharp10.RecordClass.FirstName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string FirstName { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property FirstName As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "FirstName", - "path": "src/CSharp10.cs", - "startLine": 6.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.RecordClass.FirstName*", - "name": [ - { - "lang": "csharp", - "value": "FirstName" - }, - { - "lang": "vb", - "value": "FirstName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordClass.FirstName" - }, - { - "lang": "vb", - "value": "RecordClass.FirstName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordClass.FirstName" - }, - { - "lang": "vb", - "value": "CSharp10.RecordClass.FirstName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_RecordClass_FirstName_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_RecordClass_FirstName.md&value=---%0Auid%3A%20CSharp10.RecordClass.FirstName%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L7", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_RecordClass_FirstName", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.RecordClass.LastName", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.RecordClass", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "LastName" - }, - { - "lang": "vb", - "value": "LastName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordClass.LastName" - }, - { - "lang": "vb", - "value": "RecordClass.LastName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordClass.LastName" - }, - { - "lang": "vb", - "value": "CSharp10.RecordClass.LastName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string LastName { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property LastName As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "LastName", - "path": "src/CSharp10.cs", - "startLine": 6.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.RecordClass.LastName*", - "name": [ - { - "lang": "csharp", - "value": "LastName" - }, - { - "lang": "vb", - "value": "LastName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordClass.LastName" - }, - { - "lang": "vb", - "value": "RecordClass.LastName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordClass.LastName" - }, - { - "lang": "vb", - "value": "CSharp10.RecordClass.LastName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_RecordClass_LastName_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_RecordClass_LastName.md&value=---%0Auid%3A%20CSharp10.RecordClass.LastName%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L7", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_RecordClass_LastName", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "RecordClass" - }, - { - "lang": "vb", - "value": "RecordClass" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordClass" - }, - { - "lang": "vb", - "value": "RecordClass" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordClass" - }, - { - "lang": "vb", - "value": "CSharp10.RecordClass" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "RecordClass", - "path": "src/CSharp10.cs", - "startLine": 6.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public record RecordClass : IEquatable" - }, - { - "lang": "vb", - "value": "Public Class RecordClass Implements IEquatable(Of RecordClass)" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "implements": [ - { - "uid": "System.IEquatable{CSharp10.RecordClass}", - "definition": "System.IEquatable`1", - "name": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordClass)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordClass)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.IEquatable" - }, - { - "lang": "vb", - "value": "System.IEquatable(Of CSharp10.RecordClass)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IEquatable<RecordClass>" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordClass)" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp10.RecordClass.yml", - "_path": "api/CSharp10.RecordClass.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_RecordClass.md&value=---%0Auid%3A%20CSharp10.RecordClass%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L7", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "example": "", - "seealso": [], - "id": "CSharp10_RecordClass", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json deleted file mode 100644 index 4a89929685e..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json +++ /dev/null @@ -1,1238 +0,0 @@ -{ - "uid": "CSharp10.RecordStruct", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CSharp10.RecordStruct.#ctor(System.DateTime,System.Double)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.RecordStruct", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "RecordStruct(DateTime, double)" - }, - { - "lang": "vb", - "value": "New(Date, Double)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordStruct.RecordStruct(DateTime, double)" - }, - { - "lang": "vb", - "value": "RecordStruct.New(Date, Double)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordStruct.RecordStruct(System.DateTime, double)" - }, - { - "lang": "vb", - "value": "CSharp10.RecordStruct.New(Date, Double)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public RecordStruct(DateTime TakenAt, double Measurement)" - }, - { - "lang": "vb", - "value": "Public Sub New(TakenAt As Date, Measurement As Double)" - } - ], - "parameters": [ - { - "id": "TakenAt", - "type": { - "uid": "System.DateTime", - "name": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "Measurement", - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "src/CSharp10.cs", - "startLine": 4.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.RecordStruct.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "RecordStruct" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordStruct.RecordStruct" - }, - { - "lang": "vb", - "value": "RecordStruct.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordStruct.RecordStruct" - }, - { - "lang": "vb", - "value": "CSharp10.RecordStruct.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_RecordStruct__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_RecordStruct__ctor_System_DateTime_System_Double_.md&value=---%0Auid%3A%20CSharp10.RecordStruct.%23ctor(System.DateTime%2CSystem.Double)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L5", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_RecordStruct__ctor_System_DateTime_System_Double_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp10.RecordStruct.Measurement", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.RecordStruct", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Measurement" - }, - { - "lang": "vb", - "value": "Measurement" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordStruct.Measurement" - }, - { - "lang": "vb", - "value": "RecordStruct.Measurement" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordStruct.Measurement" - }, - { - "lang": "vb", - "value": "CSharp10.RecordStruct.Measurement" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public double Measurement { readonly get; set; }" - }, - { - "lang": "vb", - "value": "Public Property Measurement As Double" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Measurement", - "path": "src/CSharp10.cs", - "startLine": 4.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.RecordStruct.Measurement*", - "name": [ - { - "lang": "csharp", - "value": "Measurement" - }, - { - "lang": "vb", - "value": "Measurement" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordStruct.Measurement" - }, - { - "lang": "vb", - "value": "RecordStruct.Measurement" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordStruct.Measurement" - }, - { - "lang": "vb", - "value": "CSharp10.RecordStruct.Measurement" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_RecordStruct_Measurement_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_RecordStruct_Measurement.md&value=---%0Auid%3A%20CSharp10.RecordStruct.Measurement%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L5", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_RecordStruct_Measurement", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.RecordStruct.TakenAt", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp10.RecordStruct", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "TakenAt" - }, - { - "lang": "vb", - "value": "TakenAt" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordStruct.TakenAt" - }, - { - "lang": "vb", - "value": "RecordStruct.TakenAt" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordStruct.TakenAt" - }, - { - "lang": "vb", - "value": "CSharp10.RecordStruct.TakenAt" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public DateTime TakenAt { readonly get; set; }" - }, - { - "lang": "vb", - "value": "Public Property TakenAt As Date" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.DateTime", - "name": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "TakenAt", - "path": "src/CSharp10.cs", - "startLine": 4.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp10", - "overload": { - "uid": "CSharp10.RecordStruct.TakenAt*", - "name": [ - { - "lang": "csharp", - "value": "TakenAt" - }, - { - "lang": "vb", - "value": "TakenAt" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordStruct.TakenAt" - }, - { - "lang": "vb", - "value": "RecordStruct.TakenAt" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordStruct.TakenAt" - }, - { - "lang": "vb", - "value": "CSharp10.RecordStruct.TakenAt" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp10_RecordStruct_TakenAt_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_RecordStruct_TakenAt.md&value=---%0Auid%3A%20CSharp10.RecordStruct.TakenAt%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L5", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_RecordStruct_TakenAt", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "RecordStruct" - }, - { - "lang": "vb", - "value": "RecordStruct" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordStruct" - }, - { - "lang": "vb", - "value": "RecordStruct" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordStruct" - }, - { - "lang": "vb", - "value": "CSharp10.RecordStruct" - } - ], - "type": "struct", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp10.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "RecordStruct", - "path": "src/CSharp10.cs", - "startLine": 4.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp10.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public record struct RecordStruct : IEquatable" - }, - { - "lang": "vb", - "value": "Public Structure RecordStruct Implements IEquatable(Of RecordStruct)" - } - ] - }, - "level": 0.0, - "implements": [ - { - "uid": "System.IEquatable{CSharp10.RecordStruct}", - "definition": "System.IEquatable`1", - "name": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordStruct)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordStruct)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.IEquatable" - }, - { - "lang": "vb", - "value": "System.IEquatable(Of CSharp10.RecordStruct)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IEquatable<RecordStruct>" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordStruct)" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp10.RecordStruct.yml", - "_path": "api/CSharp10.RecordStruct.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp10_RecordStruct.md&value=---%0Auid%3A%20CSharp10.RecordStruct%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp10.cs/#L5", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "example": "", - "seealso": [], - "id": "CSharp10_RecordStruct", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.html.view.verified.json deleted file mode 100644 index 97072c31bef..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.html.view.verified.json +++ /dev/null @@ -1,565 +0,0 @@ -{ - "uid": "CSharp10", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "CSharp10.ConstantInterpolatedStrings", - "isExtensionMethod": false, - "href": "CSharp10.ConstantInterpolatedStrings.html", - "name": [ - { - "lang": "csharp", - "value": "ConstantInterpolatedStrings" - }, - { - "lang": "vb", - "value": "ConstantInterpolatedStrings" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ConstantInterpolatedStrings" - }, - { - "lang": "vb", - "value": "ConstantInterpolatedStrings" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ConstantInterpolatedStrings" - }, - { - "lang": "vb", - "value": "CSharp10.ConstantInterpolatedStrings" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ConstantInterpolatedStrings", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.Issue7737", - "isExtensionMethod": false, - "href": "CSharp10.Issue7737.html", - "name": [ - { - "lang": "csharp", - "value": "Issue7737" - }, - { - "lang": "vb", - "value": "Issue7737" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue7737" - }, - { - "lang": "vb", - "value": "Issue7737" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.Issue7737" - }, - { - "lang": "vb", - "value": "CSharp10.Issue7737" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_Issue7737", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.RecordClass", - "isExtensionMethod": false, - "href": "CSharp10.RecordClass.html", - "name": [ - { - "lang": "csharp", - "value": "RecordClass" - }, - { - "lang": "vb", - "value": "RecordClass" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordClass" - }, - { - "lang": "vb", - "value": "RecordClass" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordClass" - }, - { - "lang": "vb", - "value": "CSharp10.RecordClass" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_RecordClass", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inStruct": true, - "typePropertyName": "inStruct", - "id": "structs", - "children": [ - { - "uid": "CSharp10.ParameterlessStructConstructors", - "isExtensionMethod": false, - "href": "CSharp10.ParameterlessStructConstructors.html", - "name": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ParameterlessStructConstructors" - }, - { - "lang": "vb", - "value": "ParameterlessStructConstructors" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ParameterlessStructConstructors" - }, - { - "lang": "vb", - "value": "CSharp10.ParameterlessStructConstructors" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ParameterlessStructConstructors", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.ReadOnlyRecordStruct", - "isExtensionMethod": false, - "href": "CSharp10.ReadOnlyRecordStruct.html", - "name": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyRecordStruct" - }, - { - "lang": "vb", - "value": "ReadOnlyRecordStruct" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.ReadOnlyRecordStruct" - }, - { - "lang": "vb", - "value": "CSharp10.ReadOnlyRecordStruct" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_ReadOnlyRecordStruct", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp10.RecordStruct", - "isExtensionMethod": false, - "href": "CSharp10.RecordStruct.html", - "name": [ - { - "lang": "csharp", - "value": "RecordStruct" - }, - { - "lang": "vb", - "value": "RecordStruct" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordStruct" - }, - { - "lang": "vb", - "value": "RecordStruct" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10.RecordStruct" - }, - { - "lang": "vb", - "value": "CSharp10.RecordStruct" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10_RecordStruct", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp10" - }, - { - "lang": "vb", - "value": "CSharp10" - } - ], - "type": "namespace", - "assemblies": [ - "CSharp" - ], - "level": 0.0, - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp10.yml", - "_path": "api/CSharp10.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp10", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json deleted file mode 100644 index 5e068241f70..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json +++ /dev/null @@ -1,4267 +0,0 @@ -{ - "uid": "CSharp11.CheckedUserDefinedOperators`1", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inOperator": true, - "typePropertyName": "inOperator", - "id": "operators", - "children": [ - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Addition(`0,`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator +(T, T)" - }, - { - "lang": "vb", - "value": "+(T, T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator +(T, T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).+(T, T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator +(T, T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).+(T, T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator +(T lhs, T rhs)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Operator +(lhs As T, rhs As T) As T" - } - ], - "parameters": [ - { - "id": "lhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "rhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Addition", - "path": "src/CSharp11.cs", - "startLine": 28.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Addition*", - "name": [ - { - "lang": "csharp", - "value": "operator +" - }, - { - "lang": "vb", - "value": "+" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator +" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).+" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator +" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).+" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator +" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Addition_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_Addition__0__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_Addition(%600%2C%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L29", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Addition__0__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedAddition(`0,`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator checked +(T, T)" - }, - { - "lang": "vb", - "value": "op_CheckedAddition(T, T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked +(T, T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedAddition(T, T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked +(T, T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedAddition(T, T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator checked +(T lhs, T rhs)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_CheckedAddition(lhs As T, rhs As T) As T" - } - ], - "parameters": [ - { - "id": "lhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "rhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_CheckedAddition", - "path": "src/CSharp11.cs", - "startLine": 37.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedAddition*", - "name": [ - { - "lang": "csharp", - "value": "operator checked +" - }, - { - "lang": "vb", - "value": "op_CheckedAddition" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked +" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedAddition" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked +" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedAddition" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator checked +" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedAddition_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_CheckedAddition__0__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_CheckedAddition(%600%2C%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L38", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedAddition__0__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedDecrement(`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator checked --(T)" - }, - { - "lang": "vb", - "value": "op_CheckedDecrement(T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked --(T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedDecrement(T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked --(T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedDecrement(T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator checked --(T x)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_CheckedDecrement(x As T) As T" - } - ], - "parameters": [ - { - "id": "x", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_CheckedDecrement", - "path": "src/CSharp11.cs", - "startLine": 35.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedDecrement*", - "name": [ - { - "lang": "csharp", - "value": "operator checked --" - }, - { - "lang": "vb", - "value": "op_CheckedDecrement" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked --" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedDecrement" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked --" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedDecrement" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator checked --" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedDecrement_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_CheckedDecrement__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_CheckedDecrement(%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L36", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedDecrement__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedDivision(`0,`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator checked /(T, T)" - }, - { - "lang": "vb", - "value": "op_CheckedDivision(T, T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked /(T, T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedDivision(T, T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked /(T, T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedDivision(T, T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator checked /(T lhs, T rhs)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_CheckedDivision(lhs As T, rhs As T) As T" - } - ], - "parameters": [ - { - "id": "lhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "rhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_CheckedDivision", - "path": "src/CSharp11.cs", - "startLine": 40.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedDivision*", - "name": [ - { - "lang": "csharp", - "value": "operator checked /" - }, - { - "lang": "vb", - "value": "op_CheckedDivision" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked /" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedDivision" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked /" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedDivision" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator checked /" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedDivision_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_CheckedDivision__0__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_CheckedDivision(%600%2C%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L41", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedDivision__0__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedExplicit(`0)~System.Int32", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "explicit operator checked int(T)" - }, - { - "lang": "vb", - "value": "op_CheckedExplicit(T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.explicit operator checked int(T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedExplicit(T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.explicit operator checked int(T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedExplicit(T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract explicit operator checked int(T x)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_CheckedExplicit(x As T) As Integer" - } - ], - "parameters": [ - { - "id": "x", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_CheckedExplicit", - "path": "src/CSharp11.cs", - "startLine": 41.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedExplicit*", - "name": [ - { - "lang": "csharp", - "value": "explicit operator checked" - }, - { - "lang": "vb", - "value": "op_CheckedExplicit" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.explicit operator checked" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedExplicit" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.explicit operator checked" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedExplicit" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "explicit operator checked" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedExplicit_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_CheckedExplicit__0__System_Int32.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_CheckedExplicit(%600)~System.Int32%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L42", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedExplicit__0__System_Int32", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedIncrement(`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator checked ++(T)" - }, - { - "lang": "vb", - "value": "op_CheckedIncrement(T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked ++(T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedIncrement(T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked ++(T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedIncrement(T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator checked ++(T x)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_CheckedIncrement(x As T) As T" - } - ], - "parameters": [ - { - "id": "x", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_CheckedIncrement", - "path": "src/CSharp11.cs", - "startLine": 34.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedIncrement*", - "name": [ - { - "lang": "csharp", - "value": "operator checked ++" - }, - { - "lang": "vb", - "value": "op_CheckedIncrement" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked ++" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedIncrement" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked ++" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedIncrement" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator checked ++" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedIncrement_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_CheckedIncrement__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_CheckedIncrement(%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L35", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedIncrement__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedMultiply(`0,`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator checked *(T, T)" - }, - { - "lang": "vb", - "value": "op_CheckedMultiply(T, T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked *(T, T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedMultiply(T, T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked *(T, T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedMultiply(T, T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator checked *(T lhs, T rhs)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_CheckedMultiply(lhs As T, rhs As T) As T" - } - ], - "parameters": [ - { - "id": "lhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "rhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_CheckedMultiply", - "path": "src/CSharp11.cs", - "startLine": 39.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedMultiply*", - "name": [ - { - "lang": "csharp", - "value": "operator checked *" - }, - { - "lang": "vb", - "value": "op_CheckedMultiply" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked *" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedMultiply" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked *" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedMultiply" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator checked *" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedMultiply_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_CheckedMultiply__0__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_CheckedMultiply(%600%2C%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L40", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedMultiply__0__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedSubtraction(`0,`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator checked -(T, T)" - }, - { - "lang": "vb", - "value": "op_CheckedSubtraction(T, T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked -(T, T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedSubtraction(T, T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked -(T, T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedSubtraction(T, T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator checked -(T lhs, T rhs)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_CheckedSubtraction(lhs As T, rhs As T) As T" - } - ], - "parameters": [ - { - "id": "lhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "rhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_CheckedSubtraction", - "path": "src/CSharp11.cs", - "startLine": 38.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedSubtraction*", - "name": [ - { - "lang": "csharp", - "value": "operator checked -" - }, - { - "lang": "vb", - "value": "op_CheckedSubtraction" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked -" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedSubtraction" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked -" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedSubtraction" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator checked -" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedSubtraction_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_CheckedSubtraction__0__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_CheckedSubtraction(%600%2C%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L39", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedSubtraction__0__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedUnaryNegation(`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator checked -(T)" - }, - { - "lang": "vb", - "value": "op_CheckedUnaryNegation(T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked -(T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedUnaryNegation(T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked -(T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedUnaryNegation(T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator checked -(T x)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_CheckedUnaryNegation(x As T) As T" - } - ], - "parameters": [ - { - "id": "x", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_CheckedUnaryNegation", - "path": "src/CSharp11.cs", - "startLine": 36.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_CheckedUnaryNegation*", - "name": [ - { - "lang": "csharp", - "value": "operator checked -" - }, - { - "lang": "vb", - "value": "op_CheckedUnaryNegation" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator checked -" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_CheckedUnaryNegation" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator checked -" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_CheckedUnaryNegation" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator checked -" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedUnaryNegation_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_CheckedUnaryNegation__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_CheckedUnaryNegation(%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L37", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_CheckedUnaryNegation__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Decrement(`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator --(T)" - }, - { - "lang": "vb", - "value": "op_Decrement(T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator --(T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_Decrement(T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator --(T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_Decrement(T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator --(T x)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_Decrement(x As T) As T" - } - ], - "parameters": [ - { - "id": "x", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Decrement", - "path": "src/CSharp11.cs", - "startLine": 26.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Decrement*", - "name": [ - { - "lang": "csharp", - "value": "operator --" - }, - { - "lang": "vb", - "value": "op_Decrement" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator --" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_Decrement" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator --" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_Decrement" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator --" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Decrement_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_Decrement__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_Decrement(%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L27", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Decrement__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Division(`0,`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator /(T, T)" - }, - { - "lang": "vb", - "value": "/(T, T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator /(T, T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T)./(T, T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator /(T, T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T)./(T, T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator /(T lhs, T rhs)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Operator /(lhs As T, rhs As T) As T" - } - ], - "parameters": [ - { - "id": "lhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "rhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Division", - "path": "src/CSharp11.cs", - "startLine": 31.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Division*", - "name": [ - { - "lang": "csharp", - "value": "operator /" - }, - { - "lang": "vb", - "value": "/" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator /" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T)./" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator /" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T)./" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator /" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Division_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_Division__0__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_Division(%600%2C%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L32", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Division__0__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Explicit(`0)~System.Int32", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "explicit operator int(T)" - }, - { - "lang": "vb", - "value": "CType(T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.explicit operator int(T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).CType(T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.explicit operator int(T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).CType(T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract explicit operator int(T x)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Narrowing Operator CType(x As T) As Integer" - } - ], - "parameters": [ - { - "id": "x", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Explicit", - "path": "src/CSharp11.cs", - "startLine": 32.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Explicit*", - "name": [ - { - "lang": "csharp", - "value": "explicit operator" - }, - { - "lang": "vb", - "value": "CType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.explicit operator" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).CType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.explicit operator" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).CType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "explicit operator" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Explicit_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_Explicit__0__System_Int32.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_Explicit(%600)~System.Int32%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L33", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Explicit__0__System_Int32", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Increment(`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator ++(T)" - }, - { - "lang": "vb", - "value": "op_Increment(T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator ++(T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_Increment(T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator ++(T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_Increment(T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator ++(T x)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_Increment(x As T) As T" - } - ], - "parameters": [ - { - "id": "x", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Increment", - "path": "src/CSharp11.cs", - "startLine": 25.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Increment*", - "name": [ - { - "lang": "csharp", - "value": "operator ++" - }, - { - "lang": "vb", - "value": "op_Increment" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator ++" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).op_Increment" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator ++" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).op_Increment" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator ++" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Increment_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_Increment__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_Increment(%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L26", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Increment__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Multiply(`0,`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator *(T, T)" - }, - { - "lang": "vb", - "value": "*(T, T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator *(T, T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).*(T, T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator *(T, T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).*(T, T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator *(T lhs, T rhs)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Operator *(lhs As T, rhs As T) As T" - } - ], - "parameters": [ - { - "id": "lhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "rhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Multiply", - "path": "src/CSharp11.cs", - "startLine": 30.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Multiply*", - "name": [ - { - "lang": "csharp", - "value": "operator *" - }, - { - "lang": "vb", - "value": "*" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator *" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).*" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator *" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).*" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator *" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Multiply_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_Multiply__0__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_Multiply(%600%2C%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L31", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Multiply__0__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Subtraction(`0,`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator -(T, T)" - }, - { - "lang": "vb", - "value": "-(T, T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator -(T, T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).-(T, T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator -(T, T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).-(T, T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator -(T lhs, T rhs)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Operator -(lhs As T, rhs As T) As T" - } - ], - "parameters": [ - { - "id": "lhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "rhs", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Subtraction", - "path": "src/CSharp11.cs", - "startLine": 29.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_Subtraction*", - "name": [ - { - "lang": "csharp", - "value": "operator -" - }, - { - "lang": "vb", - "value": "-" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator -" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).-" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator -" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).-" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator -" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Subtraction_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_Subtraction__0__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_Subtraction(%600%2C%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L30", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_Subtraction__0__0_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_UnaryNegation(`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.CheckedUserDefinedOperators`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator -(T)" - }, - { - "lang": "vb", - "value": "-(T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator -(T)" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).-(T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator -(T)" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).-(T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator -(T x)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Operator -(x As T) As T" - } - ], - "parameters": [ - { - "id": "x", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_UnaryNegation", - "path": "src/CSharp11.cs", - "startLine": 27.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.CheckedUserDefinedOperators`1.op_UnaryNegation*", - "name": [ - { - "lang": "csharp", - "value": "operator -" - }, - { - "lang": "vb", - "value": "-" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators.operator -" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T).-" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators.operator -" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T).-" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator -" - } - ], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_UnaryNegation_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1_op_UnaryNegation__0_.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601.op_UnaryNegation(%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L28", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1_op_UnaryNegation__0_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T)" - } - ], - "type": "interface", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "CheckedUserDefinedOperators", - "path": "src/CSharp11.cs", - "startLine": 23.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public interface CheckedUserDefinedOperators where T : CheckedUserDefinedOperators" - }, - { - "lang": "vb", - "value": "Public Interface CheckedUserDefinedOperators(Of T As CheckedUserDefinedOperators(Of T))" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "" - } - ] - }, - "level": 0.0, - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp11.CheckedUserDefinedOperators-1.yml", - "_path": "api/CSharp11.CheckedUserDefinedOperators-1.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_CheckedUserDefinedOperators_1.md&value=---%0Auid%3A%20CSharp11.CheckedUserDefinedOperators%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L24", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inInterface": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json deleted file mode 100644 index fff7a030c5f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json +++ /dev/null @@ -1,1240 +0,0 @@ -{ - "uid": "CSharp11.RequiredModifier", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp11.RequiredModifier.FirstName", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.RequiredModifier", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "FirstName" - }, - { - "lang": "vb", - "value": "FirstName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RequiredModifier.FirstName" - }, - { - "lang": "vb", - "value": "RequiredModifier.FirstName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.RequiredModifier.FirstName" - }, - { - "lang": "vb", - "value": "CSharp11.RequiredModifier.FirstName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public required string FirstName { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property FirstName As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "FirstName", - "path": "src/CSharp11.cs", - "startLine": 46.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.RequiredModifier.FirstName*", - "name": [ - { - "lang": "csharp", - "value": "FirstName" - }, - { - "lang": "vb", - "value": "FirstName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RequiredModifier.FirstName" - }, - { - "lang": "vb", - "value": "RequiredModifier.FirstName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.RequiredModifier.FirstName" - }, - { - "lang": "vb", - "value": "CSharp11.RequiredModifier.FirstName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp11_RequiredModifier_FirstName_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_RequiredModifier_FirstName.md&value=---%0Auid%3A%20CSharp11.RequiredModifier.FirstName%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L47", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_RequiredModifier_FirstName", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.RequiredModifier.LastName", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.RequiredModifier", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "LastName" - }, - { - "lang": "vb", - "value": "LastName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RequiredModifier.LastName" - }, - { - "lang": "vb", - "value": "RequiredModifier.LastName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.RequiredModifier.LastName" - }, - { - "lang": "vb", - "value": "CSharp11.RequiredModifier.LastName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public required string LastName { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property LastName As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "LastName", - "path": "src/CSharp11.cs", - "startLine": 48.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.RequiredModifier.LastName*", - "name": [ - { - "lang": "csharp", - "value": "LastName" - }, - { - "lang": "vb", - "value": "LastName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RequiredModifier.LastName" - }, - { - "lang": "vb", - "value": "RequiredModifier.LastName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.RequiredModifier.LastName" - }, - { - "lang": "vb", - "value": "CSharp11.RequiredModifier.LastName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp11_RequiredModifier_LastName_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_RequiredModifier_LastName.md&value=---%0Auid%3A%20CSharp11.RequiredModifier.LastName%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L49", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_RequiredModifier_LastName", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.RequiredModifier.MiddleName", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.RequiredModifier", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "MiddleName" - }, - { - "lang": "vb", - "value": "MiddleName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RequiredModifier.MiddleName" - }, - { - "lang": "vb", - "value": "RequiredModifier.MiddleName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.RequiredModifier.MiddleName" - }, - { - "lang": "vb", - "value": "CSharp11.RequiredModifier.MiddleName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string MiddleName { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property MiddleName As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "MiddleName", - "path": "src/CSharp11.cs", - "startLine": 47.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.RequiredModifier.MiddleName*", - "name": [ - { - "lang": "csharp", - "value": "MiddleName" - }, - { - "lang": "vb", - "value": "MiddleName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RequiredModifier.MiddleName" - }, - { - "lang": "vb", - "value": "RequiredModifier.MiddleName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.RequiredModifier.MiddleName" - }, - { - "lang": "vb", - "value": "CSharp11.RequiredModifier.MiddleName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp11_RequiredModifier_MiddleName_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_RequiredModifier_MiddleName.md&value=---%0Auid%3A%20CSharp11.RequiredModifier.MiddleName%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L48", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_RequiredModifier_MiddleName", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "RequiredModifier" - }, - { - "lang": "vb", - "value": "RequiredModifier" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RequiredModifier" - }, - { - "lang": "vb", - "value": "RequiredModifier" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.RequiredModifier" - }, - { - "lang": "vb", - "value": "CSharp11.RequiredModifier" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "RequiredModifier", - "path": "src/CSharp11.cs", - "startLine": 44.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class RequiredModifier" - }, - { - "lang": "vb", - "value": "Public Class RequiredModifier" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp11.RequiredModifier.yml", - "_path": "api/CSharp11.RequiredModifier.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_RequiredModifier.md&value=---%0Auid%3A%20CSharp11.RequiredModifier%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L45", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_RequiredModifier", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json deleted file mode 100644 index a214f90d045..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json +++ /dev/null @@ -1,927 +0,0 @@ -{ - "uid": "CSharp11.ScopedModifier", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp11.ScopedModifier.CreateSpan(System.Int32@)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.ScopedModifier", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "CreateSpan(scoped ref int)" - }, - { - "lang": "vb", - "value": "CreateSpan(Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ScopedModifier.CreateSpan(scoped ref int)" - }, - { - "lang": "vb", - "value": "ScopedModifier.CreateSpan(Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.ScopedModifier.CreateSpan(scoped ref int)" - }, - { - "lang": "vb", - "value": "CSharp11.ScopedModifier.CreateSpan(Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Span CreateSpan(scoped ref int parameter)" - }, - { - "lang": "vb", - "value": "Public Function CreateSpan(parameter As Integer) As Span(Of Integer)" - } - ], - "parameters": [ - { - "id": "parameter", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.Span{System.Int32}", - "definition": "System.Span`1", - "name": [ - { - "lang": "csharp", - "value": "Span" - }, - { - "lang": "vb", - "value": "Span(Of Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Span" - }, - { - "lang": "vb", - "value": "Span(Of Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Span" - }, - { - "lang": "vb", - "value": "System.Span(Of Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Span<int>" - }, - { - "lang": "vb", - "value": "Span(Of Integer)" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "CreateSpan", - "path": "src/CSharp11.cs", - "startLine": 58.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.ScopedModifier.CreateSpan*", - "name": [ - { - "lang": "csharp", - "value": "CreateSpan" - }, - { - "lang": "vb", - "value": "CreateSpan" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ScopedModifier.CreateSpan" - }, - { - "lang": "vb", - "value": "ScopedModifier.CreateSpan" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.ScopedModifier.CreateSpan" - }, - { - "lang": "vb", - "value": "CSharp11.ScopedModifier.CreateSpan" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp11_ScopedModifier_CreateSpan_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_ScopedModifier_CreateSpan_System_Int32__.md&value=---%0Auid%3A%20CSharp11.ScopedModifier.CreateSpan(System.Int32%40)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L59", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_ScopedModifier_CreateSpan_System_Int32__", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ScopedModifier" - }, - { - "lang": "vb", - "value": "ScopedModifier" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ScopedModifier" - }, - { - "lang": "vb", - "value": "ScopedModifier" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.ScopedModifier" - }, - { - "lang": "vb", - "value": "CSharp11.ScopedModifier" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ScopedModifier", - "path": "src/CSharp11.cs", - "startLine": 56.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class ScopedModifier" - }, - { - "lang": "vb", - "value": "Public Class ScopedModifier" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp11.ScopedModifier.yml", - "_path": "api/CSharp11.ScopedModifier.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_ScopedModifier.md&value=---%0Auid%3A%20CSharp11.ScopedModifier%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L57", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_ScopedModifier", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json deleted file mode 100644 index 4de941f98e6..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json +++ /dev/null @@ -1,533 +0,0 @@ -{ - "uid": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inOperator": true, - "typePropertyName": "inOperator", - "id": "operators", - "children": [ - { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1.op_Increment(`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator ++(T)" - }, - { - "lang": "vb", - "value": "op_Increment(T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext.operator ++(T)" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of T).op_Increment(T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext.operator ++(T)" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext(Of T).op_Increment(T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static abstract T operator ++(T other)" - }, - { - "lang": "vb", - "value": "Public Shared MustInherit Function op_Increment(other As T) As T" - } - ], - "parameters": [ - { - "id": "other", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Increment", - "path": "src/CSharp11.cs", - "startLine": 6.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1.op_Increment*", - "name": [ - { - "lang": "csharp", - "value": "operator ++" - }, - { - "lang": "vb", - "value": "op_Increment" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext.operator ++" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of T).op_Increment" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext.operator ++" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext(Of T).op_Increment" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator ++" - } - ], - "id": "CSharp11_StaticAbstractMembersInInterfaces_IGetNext_1_op_Increment_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_StaticAbstractMembersInInterfaces_IGetNext_1_op_Increment__0_.md&value=---%0Auid%3A%20CSharp11.StaticAbstractMembersInInterfaces.IGetNext%601.op_Increment(%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L7", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces_IGetNext_1_op_Increment__0_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext(Of T)" - } - ], - "type": "interface", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "IGetNext", - "path": "src/CSharp11.cs", - "startLine": 4.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public interface StaticAbstractMembersInInterfaces.IGetNext where T : StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "Public Interface StaticAbstractMembersInInterfaces.IGetNext(Of T As StaticAbstractMembersInInterfaces.IGetNext(Of T))" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "" - } - ] - }, - "level": 0.0, - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.yml", - "_path": "api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_StaticAbstractMembersInInterfaces_IGetNext_1.md&value=---%0Auid%3A%20CSharp11.StaticAbstractMembersInInterfaces.IGetNext%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L5", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces_IGetNext_1", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inInterface": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json deleted file mode 100644 index 3d1bdad3e27..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json +++ /dev/null @@ -1,1373 +0,0 @@ -{ - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.#ctor", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "RepeatSequence()" - }, - { - "lang": "vb", - "value": "New()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.RepeatSequence()" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.New()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.RepeatSequence()" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.New()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public RepeatSequence()" - }, - { - "lang": "vb", - "value": "Public Sub New()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "src/CSharp11.cs", - "startLine": 14.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "overload": { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "RepeatSequence" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.RepeatSequence" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence__ctor.md&value=---%0Auid%3A%20CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.%23ctor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L15", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence__ctor", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.Text", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Text" - }, - { - "lang": "vb", - "value": "Text" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.Text" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.Text" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.Text" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.Text" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string Text" - }, - { - "lang": "vb", - "value": "Public Text As String" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Text", - "path": "src/CSharp11.cs", - "startLine": 12.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_Text.md&value=---%0Auid%3A%20CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.Text%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L13", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_Text", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.ToString()" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString()" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public override string ToString()" - }, - { - "lang": "vb", - "value": "Public Overrides Function ToString() As String" - } - ], - "return": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

The fully qualified type name.

\n" - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ToString", - "path": "src/CSharp11.cs", - "startLine": 19.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "example": [], - "overridden": { - "uid": "System.ValueType.ToString", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ] - }, - "overload": { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString*", - "name": [ - { - "lang": "csharp", - "value": "ToString" - }, - { - "lang": "vb", - "value": "ToString" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.ToString" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.ToString" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_ToString_" - }, - "level": 0.0, - "type": "method", - "summary": "

Returns the fully qualified type name of this instance.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_ToString.md&value=---%0Auid%3A%20CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L20", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_ToString", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inOperator": true, - "typePropertyName": "inOperator", - "id": "operators", - "children": [ - { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment(CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator ++(RepeatSequence)" - }, - { - "lang": "vb", - "value": "op_Increment(RepeatSequence)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.operator ++(StaticAbstractMembersInInterfaces.RepeatSequence)" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment(StaticAbstractMembersInInterfaces.RepeatSequence)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.operator ++(CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence)" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment(CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static StaticAbstractMembersInInterfaces.RepeatSequence operator ++(StaticAbstractMembersInInterfaces.RepeatSequence other)" - }, - { - "lang": "vb", - "value": "Public Shared Function op_Increment(other As StaticAbstractMembersInInterfaces.RepeatSequence) As StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "parameters": [ - { - "id": "other", - "type": { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence", - "name": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ] - } - } - ], - "return": { - "type": { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence", - "name": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Increment", - "path": "src/CSharp11.cs", - "startLine": 16.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp11", - "example": [], - "overload": { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment*", - "name": [ - { - "lang": "csharp", - "value": "operator ++" - }, - { - "lang": "vb", - "value": "op_Increment" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.operator ++" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.operator ++" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator ++" - } - ], - "id": "CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_op_Increment_" - }, - "level": 0.0, - "implements": [ - { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext{CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence}.op_Increment(CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence)", - "definition": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1.op_Increment(`0)", - "name": [ - { - "lang": "csharp", - "value": "operator ++(RepeatSequence)" - }, - { - "lang": "vb", - "value": "op_Increment(RepeatSequence)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext.operator ++(StaticAbstractMembersInInterfaces.RepeatSequence)" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of StaticAbstractMembersInInterfaces.RepeatSequence).op_Increment(StaticAbstractMembersInInterfaces.RepeatSequence)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext.operator ++(CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence)" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext(Of CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence).op_Increment(CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator ++(RepeatSequence)" - }, - { - "lang": "vb", - "value": "op_Increment(RepeatSequence)" - } - ] - } - ], - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_op_Increment_CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_.md&value=---%0Auid%3A%20CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment(CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L17", - "description": "", - "remarks": "", - "conceptual": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_op_Increment_CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "type": "struct", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "RepeatSequence", - "path": "src/CSharp11.cs", - "startLine": 9.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public struct StaticAbstractMembersInInterfaces.RepeatSequence : StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "Public Structure StaticAbstractMembersInInterfaces.RepeatSequence Implements StaticAbstractMembersInInterfaces.IGetNext(Of StaticAbstractMembersInInterfaces.RepeatSequence)" - } - ] - }, - "level": 0.0, - "implements": [ - { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext{CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence}", - "definition": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1", - "name": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of StaticAbstractMembersInInterfaces.RepeatSequence)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of StaticAbstractMembersInInterfaces.RepeatSequence)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext(Of CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext<StaticAbstractMembersInInterfaces.RepeatSequence>" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of StaticAbstractMembersInInterfaces.RepeatSequence)" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.yml", - "_path": "api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence.md&value=---%0Auid%3A%20CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L10", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "example": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json deleted file mode 100644 index 31a0ae34e11..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json +++ /dev/null @@ -1,692 +0,0 @@ -{ - "uid": "CSharp11.StaticAbstractMembersInInterfaces", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp11.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "StaticAbstractMembersInInterfaces", - "path": "src/CSharp11.cs", - "startLine": 2.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp11.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class StaticAbstractMembersInInterfaces" - }, - { - "lang": "vb", - "value": "Public Class StaticAbstractMembersInInterfaces" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp11.StaticAbstractMembersInInterfaces.yml", - "_path": "api/CSharp11.StaticAbstractMembersInInterfaces.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp11_StaticAbstractMembersInInterfaces.md&value=---%0Auid%3A%20CSharp11.StaticAbstractMembersInInterfaces%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp11.cs/#L3", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.html.view.verified.json deleted file mode 100644 index f76b47fcb2f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.html.view.verified.json +++ /dev/null @@ -1,573 +0,0 @@ -{ - "uid": "CSharp11", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "CSharp11.RequiredModifier", - "isExtensionMethod": false, - "href": "CSharp11.RequiredModifier.html", - "name": [ - { - "lang": "csharp", - "value": "RequiredModifier" - }, - { - "lang": "vb", - "value": "RequiredModifier" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RequiredModifier" - }, - { - "lang": "vb", - "value": "RequiredModifier" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.RequiredModifier" - }, - { - "lang": "vb", - "value": "CSharp11.RequiredModifier" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_RequiredModifier", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.ScopedModifier", - "isExtensionMethod": false, - "href": "CSharp11.ScopedModifier.html", - "name": [ - { - "lang": "csharp", - "value": "ScopedModifier" - }, - { - "lang": "vb", - "value": "ScopedModifier" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ScopedModifier" - }, - { - "lang": "vb", - "value": "ScopedModifier" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.ScopedModifier" - }, - { - "lang": "vb", - "value": "CSharp11.ScopedModifier" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_ScopedModifier", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.StaticAbstractMembersInInterfaces", - "isExtensionMethod": false, - "href": "CSharp11.StaticAbstractMembersInInterfaces.html", - "name": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inStruct": true, - "typePropertyName": "inStruct", - "id": "structs", - "children": [ - { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence", - "isExtensionMethod": false, - "parent": "CSharp11", - "href": "CSharp11.StaticAbstractMembersInInterfaces.html", - "name": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.RepeatSequence" - } - ], - "level": 0.0, - "summary": "", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inInterface": true, - "typePropertyName": "inInterface", - "id": "interfaces", - "children": [ - { - "uid": "CSharp11.CheckedUserDefinedOperators`1", - "isExtensionMethod": false, - "href": "CSharp11.CheckedUserDefinedOperators-1.html", - "name": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.CheckedUserDefinedOperators" - }, - { - "lang": "vb", - "value": "CSharp11.CheckedUserDefinedOperators(Of T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CheckedUserDefinedOperators<T>" - }, - { - "lang": "vb", - "value": "CheckedUserDefinedOperators(Of T)" - } - ], - "level": 0.0, - "summary": "", - "type": "interface", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_CheckedUserDefinedOperators_1", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1", - "isExtensionMethod": false, - "href": "CSharp11.StaticAbstractMembersInInterfaces.html", - "name": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext" - }, - { - "lang": "vb", - "value": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext(Of T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "StaticAbstractMembersInInterfaces.IGetNext<T>" - }, - { - "lang": "vb", - "value": "StaticAbstractMembersInInterfaces.IGetNext(Of T)" - } - ], - "level": 0.0, - "summary": "", - "type": "interface", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11_StaticAbstractMembersInInterfaces_IGetNext_1", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp11" - }, - { - "lang": "vb", - "value": "CSharp11" - } - ], - "type": "namespace", - "assemblies": [ - "CSharp" - ], - "level": 0.0, - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp11.yml", - "_path": "api/CSharp11.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp11", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.CollectionExpressions.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.CollectionExpressions.html.view.verified.json deleted file mode 100644 index cb13688b7bf..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.CollectionExpressions.html.view.verified.json +++ /dev/null @@ -1,970 +0,0 @@ -{ - "uid": "CSharp12.CollectionExpressions", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CSharp12.CollectionExpressions.a", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.CollectionExpressions", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "a" - }, - { - "lang": "vb", - "value": "a" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CollectionExpressions.a" - }, - { - "lang": "vb", - "value": "CollectionExpressions.a" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.CollectionExpressions.a" - }, - { - "lang": "vb", - "value": "CSharp12.CollectionExpressions.a" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static int[] a" - }, - { - "lang": "vb", - "value": "Public Shared a As Integer()" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.Int32[]", - "name": [ - { - "lang": "csharp", - "value": "int[]" - }, - { - "lang": "vb", - "value": "Integer()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int[]" - }, - { - "lang": "vb", - "value": "Integer()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int[]" - }, - { - "lang": "vb", - "value": "Integer()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "int[]" - }, - { - "lang": "vb", - "value": "Integer()" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "a", - "path": "src/CSharp12.cs", - "startLine": 57.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_CollectionExpressions_a.md&value=---%0Auid%3A%20CSharp12.CollectionExpressions.a%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L58", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_CollectionExpressions_a", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.CollectionExpressions.twoD", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.CollectionExpressions", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "twoD" - }, - { - "lang": "vb", - "value": "twoD" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CollectionExpressions.twoD" - }, - { - "lang": "vb", - "value": "CollectionExpressions.twoD" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.CollectionExpressions.twoD" - }, - { - "lang": "vb", - "value": "CSharp12.CollectionExpressions.twoD" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static int[][] twoD" - }, - { - "lang": "vb", - "value": "Public Shared twoD As Integer()()" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.Int32[][]", - "name": [ - { - "lang": "csharp", - "value": "int[][]" - }, - { - "lang": "vb", - "value": "Integer()()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int[][]" - }, - { - "lang": "vb", - "value": "Integer()()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int[][]" - }, - { - "lang": "vb", - "value": "Integer()()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "int[][]" - }, - { - "lang": "vb", - "value": "Integer()()" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "twoD", - "path": "src/CSharp12.cs", - "startLine": 59.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_CollectionExpressions_twoD.md&value=---%0Auid%3A%20CSharp12.CollectionExpressions.twoD%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L60", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_CollectionExpressions_twoD", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CollectionExpressions" - }, - { - "lang": "vb", - "value": "CollectionExpressions" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CollectionExpressions" - }, - { - "lang": "vb", - "value": "CollectionExpressions" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.CollectionExpressions" - }, - { - "lang": "vb", - "value": "CSharp12.CollectionExpressions" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "CollectionExpressions", - "path": "src/CSharp12.cs", - "startLine": 50.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class CollectionExpressions" - }, - { - "lang": "vb", - "value": "Public Class CollectionExpressions" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp12.CollectionExpressions.yml", - "_path": "api/CSharp12.CollectionExpressions.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_CollectionExpressions.md&value=---%0Auid%3A%20CSharp12.CollectionExpressions%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L51", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_CollectionExpressions", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.DefaultLambdaParameters.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.DefaultLambdaParameters.html.view.verified.json deleted file mode 100644 index 2358c442fc8..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.DefaultLambdaParameters.html.view.verified.json +++ /dev/null @@ -1,833 +0,0 @@ -{ - "uid": "CSharp12.DefaultLambdaParameters", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp12.DefaultLambdaParameters.Foo", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.DefaultLambdaParameters", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Foo()" - }, - { - "lang": "vb", - "value": "Foo()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultLambdaParameters.Foo()" - }, - { - "lang": "vb", - "value": "DefaultLambdaParameters.Foo()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.DefaultLambdaParameters.Foo()" - }, - { - "lang": "vb", - "value": "CSharp12.DefaultLambdaParameters.Foo()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Foo()" - }, - { - "lang": "vb", - "value": "Public Sub Foo()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Foo", - "path": "src/CSharp12.cs", - "startLine": 64.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "overload": { - "uid": "CSharp12.DefaultLambdaParameters.Foo*", - "name": [ - { - "lang": "csharp", - "value": "Foo" - }, - { - "lang": "vb", - "value": "Foo" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultLambdaParameters.Foo" - }, - { - "lang": "vb", - "value": "DefaultLambdaParameters.Foo" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.DefaultLambdaParameters.Foo" - }, - { - "lang": "vb", - "value": "CSharp12.DefaultLambdaParameters.Foo" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_DefaultLambdaParameters_Foo_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_DefaultLambdaParameters_Foo.md&value=---%0Auid%3A%20CSharp12.DefaultLambdaParameters.Foo%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L65", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_DefaultLambdaParameters_Foo", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "DefaultLambdaParameters" - }, - { - "lang": "vb", - "value": "DefaultLambdaParameters" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultLambdaParameters" - }, - { - "lang": "vb", - "value": "DefaultLambdaParameters" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.DefaultLambdaParameters" - }, - { - "lang": "vb", - "value": "CSharp12.DefaultLambdaParameters" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "DefaultLambdaParameters", - "path": "src/CSharp12.cs", - "startLine": 62.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class DefaultLambdaParameters" - }, - { - "lang": "vb", - "value": "Public Class DefaultLambdaParameters" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp12.DefaultLambdaParameters.yml", - "_path": "api/CSharp12.DefaultLambdaParameters.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_DefaultLambdaParameters.md&value=---%0Auid%3A%20CSharp12.DefaultLambdaParameters%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L63", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_DefaultLambdaParameters", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.InlineArrays.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.InlineArrays.html.view.verified.json deleted file mode 100644 index 62039967536..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.InlineArrays.html.view.verified.json +++ /dev/null @@ -1,591 +0,0 @@ -{ - "uid": "CSharp12.InlineArrays", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "InlineArrays" - }, - { - "lang": "vb", - "value": "InlineArrays" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "InlineArrays" - }, - { - "lang": "vb", - "value": "InlineArrays" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.InlineArrays" - }, - { - "lang": "vb", - "value": "CSharp12.InlineArrays" - } - ], - "type": "struct", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "InlineArrays", - "path": "src/CSharp12.cs", - "startLine": 76.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public struct InlineArrays" - }, - { - "lang": "vb", - "value": "Public Structure InlineArrays" - } - ] - }, - "level": 0.0, - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp12.InlineArrays.yml", - "_path": "api/CSharp12.InlineArrays.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_InlineArrays.md&value=---%0Auid%3A%20CSharp12.InlineArrays%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L77", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_InlineArrays", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.BankAccount.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.BankAccount.html.view.verified.json deleted file mode 100644 index 5c46da3df70..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.BankAccount.html.view.verified.json +++ /dev/null @@ -1,1492 +0,0 @@ -{ - "uid": "CSharp12.PrimaryConstructors.BankAccount", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CSharp12.PrimaryConstructors.BankAccount.#ctor(System.String,System.String)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.BankAccount", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "BankAccount(string, string)" - }, - { - "lang": "vb", - "value": "New(String, String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.BankAccount(string, string)" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.New(String, String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.BankAccount(string, string)" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.New(String, String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public BankAccount(string accountID, string owner)" - }, - { - "lang": "vb", - "value": "Public Sub New(accountID As String, owner As String)" - } - ], - "parameters": [ - { - "id": "accountID", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "owner", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "src/CSharp12.cs", - "startLine": 12.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "overload": { - "uid": "CSharp12.PrimaryConstructors.BankAccount.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "BankAccount" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.BankAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.BankAccount" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_PrimaryConstructors_BankAccount__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_BankAccount__ctor_System_String_System_String_.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.BankAccount.%23ctor(System.String%2CSystem.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L13", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_BankAccount__ctor_System_String_System_String_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp12.PrimaryConstructors.BankAccount.AccountID", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.BankAccount", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "AccountID" - }, - { - "lang": "vb", - "value": "AccountID" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.AccountID" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.AccountID" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.AccountID" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.AccountID" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string AccountID { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property AccountID As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "AccountID", - "path": "src/CSharp12.cs", - "startLine": 14.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "overload": { - "uid": "CSharp12.PrimaryConstructors.BankAccount.AccountID*", - "name": [ - { - "lang": "csharp", - "value": "AccountID" - }, - { - "lang": "vb", - "value": "AccountID" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.AccountID" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.AccountID" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.AccountID" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.AccountID" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_PrimaryConstructors_BankAccount_AccountID_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_BankAccount_AccountID.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.BankAccount.AccountID%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L15", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_BankAccount_AccountID", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.PrimaryConstructors.BankAccount.Owner", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.BankAccount", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Owner" - }, - { - "lang": "vb", - "value": "Owner" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.Owner" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.Owner" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.Owner" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.Owner" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string Owner { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property Owner As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Owner", - "path": "src/CSharp12.cs", - "startLine": 15.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "overload": { - "uid": "CSharp12.PrimaryConstructors.BankAccount.Owner*", - "name": [ - { - "lang": "csharp", - "value": "Owner" - }, - { - "lang": "vb", - "value": "Owner" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.Owner" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.Owner" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.Owner" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.Owner" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_PrimaryConstructors_BankAccount_Owner_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_BankAccount_Owner.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.BankAccount.Owner%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L16", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_BankAccount_Owner", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp12.PrimaryConstructors.BankAccount.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.BankAccount", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.ToString()" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.ToString()" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public override string ToString()" - }, - { - "lang": "vb", - "value": "Public Overrides Function ToString() As String" - } - ], - "return": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

A string that represents the current object.

\n" - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ToString", - "path": "src/CSharp12.cs", - "startLine": 17.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "example": [], - "overridden": { - "uid": "System.Object.ToString", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ] - }, - "overload": { - "uid": "CSharp12.PrimaryConstructors.BankAccount.ToString*", - "name": [ - { - "lang": "csharp", - "value": "ToString" - }, - { - "lang": "vb", - "value": "ToString" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.ToString" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.ToString" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.ToString" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.ToString" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_PrimaryConstructors_BankAccount_ToString_" - }, - "level": 0.0, - "type": "method", - "summary": "

Returns a string that represents the current object.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_BankAccount_ToString.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.BankAccount.ToString%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L18", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_BankAccount_ToString", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "BankAccount", - "path": "src/CSharp12.cs", - "startLine": 12.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "Public Class PrimaryConstructors.BankAccount" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "derivedClasses": [ - { - "isEii": false, - "isExtensionMethod": false, - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 2.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp12.PrimaryConstructors.BankAccount.yml", - "_path": "api/CSharp12.PrimaryConstructors.BankAccount.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_BankAccount.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.BankAccount%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L13", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_BankAccount", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.CheckAccount.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.CheckAccount.html.view.verified.json deleted file mode 100644 index 366e44552f3..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.CheckAccount.html.view.verified.json +++ /dev/null @@ -1,1853 +0,0 @@ -{ - "uid": "CSharp12.PrimaryConstructors.CheckAccount", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CSharp12.PrimaryConstructors.CheckAccount.#ctor(System.String,System.String,System.Decimal)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.CheckAccount", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "CheckAccount(string, string, decimal)" - }, - { - "lang": "vb", - "value": "New(String, String, Decimal)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount.CheckAccount(string, string, decimal)" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount.New(String, String, Decimal)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount.CheckAccount(string, string, decimal)" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount.New(String, String, Decimal)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public CheckAccount(string accountID, string owner, decimal overdraftLimit = 0)" - }, - { - "lang": "vb", - "value": "Public Sub New(accountID As String, owner As String, overdraftLimit As Decimal = 0)" - } - ], - "parameters": [ - { - "id": "accountID", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "owner", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "overdraftLimit", - "type": { - "uid": "System.Decimal", - "name": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "src/CSharp12.cs", - "startLine": 20.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "overload": { - "uid": "CSharp12.PrimaryConstructors.CheckAccount.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "CheckAccount" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount.CheckAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount.CheckAccount" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_PrimaryConstructors_CheckAccount__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_CheckAccount__ctor_System_String_System_String_System_Decimal_.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.CheckAccount.%23ctor(System.String%2CSystem.String%2CSystem.Decimal)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L21", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_CheckAccount__ctor_System_String_System_String_System_Decimal_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.CheckAccount", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "CurrentBalance" - }, - { - "lang": "vb", - "value": "CurrentBalance" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount.CurrentBalance" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount.CurrentBalance" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public decimal CurrentBalance { get; }" - }, - { - "lang": "vb", - "value": "Public Property CurrentBalance As Decimal" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Decimal", - "name": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "CurrentBalance", - "path": "src/CSharp12.cs", - "startLine": 22.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "overload": { - "uid": "CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance*", - "name": [ - { - "lang": "csharp", - "value": "CurrentBalance" - }, - { - "lang": "vb", - "value": "CurrentBalance" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount.CurrentBalance" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount.CurrentBalance" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_PrimaryConstructors_CheckAccount_CurrentBalance_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_CheckAccount_CurrentBalance.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L23", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_CheckAccount_CurrentBalance", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp12.PrimaryConstructors.CheckAccount.Deposit(System.Decimal)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.CheckAccount", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Deposit(decimal)" - }, - { - "lang": "vb", - "value": "Deposit(Decimal)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount.Deposit(decimal)" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount.Deposit(Decimal)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount.Deposit(decimal)" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount.Deposit(Decimal)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Deposit(decimal amount)" - }, - { - "lang": "vb", - "value": "Public Sub Deposit(amount As Decimal)" - } - ], - "parameters": [ - { - "id": "amount", - "type": { - "uid": "System.Decimal", - "name": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Deposit", - "path": "src/CSharp12.cs", - "startLine": 24.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "overload": { - "uid": "CSharp12.PrimaryConstructors.CheckAccount.Deposit*", - "name": [ - { - "lang": "csharp", - "value": "Deposit" - }, - { - "lang": "vb", - "value": "Deposit" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount.Deposit" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount.Deposit" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount.Deposit" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount.Deposit" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_PrimaryConstructors_CheckAccount_Deposit_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_CheckAccount_Deposit_System_Decimal_.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.CheckAccount.Deposit(System.Decimal)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L25", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_CheckAccount_Deposit_System_Decimal_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.PrimaryConstructors.CheckAccount.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.CheckAccount", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount.ToString()" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount.ToString()" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public override string ToString()" - }, - { - "lang": "vb", - "value": "Public Overrides Function ToString() As String" - } - ], - "return": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

A string that represents the current object.

\n" - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ToString", - "path": "src/CSharp12.cs", - "startLine": 46.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "example": [], - "overridden": { - "uid": "CSharp12.PrimaryConstructors.BankAccount.ToString", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.ToString()" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.ToString()" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ] - }, - "overload": { - "uid": "CSharp12.PrimaryConstructors.CheckAccount.ToString*", - "name": [ - { - "lang": "csharp", - "value": "ToString" - }, - { - "lang": "vb", - "value": "ToString" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount.ToString" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount.ToString" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount.ToString" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount.ToString" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_PrimaryConstructors_CheckAccount_ToString_" - }, - "level": 0.0, - "type": "method", - "summary": "

Returns a string that represents the current object.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_CheckAccount_ToString.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.CheckAccount.ToString%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L47", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_CheckAccount_ToString", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.PrimaryConstructors.CheckAccount.Withdrawal(System.Decimal)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.CheckAccount", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Withdrawal(decimal)" - }, - { - "lang": "vb", - "value": "Withdrawal(Decimal)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount.Withdrawal(decimal)" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount.Withdrawal(Decimal)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount.Withdrawal(decimal)" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount.Withdrawal(Decimal)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Withdrawal(decimal amount)" - }, - { - "lang": "vb", - "value": "Public Sub Withdrawal(amount As Decimal)" - } - ], - "parameters": [ - { - "id": "amount", - "type": { - "uid": "System.Decimal", - "name": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Withdrawal", - "path": "src/CSharp12.cs", - "startLine": 33.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "overload": { - "uid": "CSharp12.PrimaryConstructors.CheckAccount.Withdrawal*", - "name": [ - { - "lang": "csharp", - "value": "Withdrawal" - }, - { - "lang": "vb", - "value": "Withdrawal" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount.Withdrawal" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount.Withdrawal" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount.Withdrawal" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount.Withdrawal" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_PrimaryConstructors_CheckAccount_Withdrawal_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_CheckAccount_Withdrawal_System_Decimal_.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.CheckAccount.Withdrawal(System.Decimal)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L34", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_CheckAccount_Withdrawal_System_Decimal_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "CheckAccount", - "path": "src/CSharp12.cs", - "startLine": 20.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class PrimaryConstructors.CheckAccount : PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "Public Class PrimaryConstructors.CheckAccount Inherits PrimaryConstructors.BankAccount" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - }, - { - "uid": "CSharp12.PrimaryConstructors.BankAccount", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12", - "href": "CSharp12.PrimaryConstructors.html", - "name": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount" - } - ], - "level": 0.0, - "index": 1.0 - } - ], - "level": 2.0, - "inheritedMembers": [ - { - "uid": "CSharp12.PrimaryConstructors.BankAccount.AccountID", - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.BankAccount", - "href": "CSharp12.PrimaryConstructors.BankAccount.html#CSharp12_PrimaryConstructors_BankAccount_AccountID", - "name": [ - { - "lang": "csharp", - "value": "AccountID" - }, - { - "lang": "vb", - "value": "AccountID" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.AccountID" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.AccountID" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.AccountID" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.AccountID" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": null, - "type": "property", - "platform": null, - "isEii": false - }, - { - "uid": "CSharp12.PrimaryConstructors.BankAccount.Owner", - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.BankAccount", - "href": "CSharp12.PrimaryConstructors.BankAccount.html#CSharp12_PrimaryConstructors_BankAccount_Owner", - "name": [ - { - "lang": "csharp", - "value": "Owner" - }, - { - "lang": "vb", - "value": "Owner" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount.Owner" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount.Owner" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount.Owner" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount.Owner" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": null, - "type": "property", - "platform": null, - "isEii": false - }, - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp12.PrimaryConstructors.CheckAccount.yml", - "_path": "api/CSharp12.PrimaryConstructors.CheckAccount.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_CheckAccount.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.CheckAccount%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L21", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_CheckAccount", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.Distance.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.Distance.html.view.verified.json deleted file mode 100644 index 3a70cb950bf..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.Distance.html.view.verified.json +++ /dev/null @@ -1,1103 +0,0 @@ -{ - "uid": "CSharp12.PrimaryConstructors.Distance", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CSharp12.PrimaryConstructors.Distance.#ctor(System.Double,System.Double)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.Distance", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Distance(double, double)" - }, - { - "lang": "vb", - "value": "New(Double, Double)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.Distance.Distance(double, double)" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.Distance.New(Double, Double)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.Distance.Distance(double, double)" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.Distance.New(Double, Double)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Distance(double dx, double dy)" - }, - { - "lang": "vb", - "value": "Public Sub New(dx As Double, dy As Double)" - } - ], - "parameters": [ - { - "id": "dx", - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "dy", - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "src/CSharp12.cs", - "startLine": 6.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "overload": { - "uid": "CSharp12.PrimaryConstructors.Distance.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Distance" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.Distance.Distance" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.Distance.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.Distance.Distance" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.Distance.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_PrimaryConstructors_Distance__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_Distance__ctor_System_Double_System_Double_.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.Distance.%23ctor(System.Double%2CSystem.Double)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L7", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_Distance__ctor_System_Double_System_Double_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CSharp12.PrimaryConstructors.Distance.Direction", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.Distance", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Direction" - }, - { - "lang": "vb", - "value": "Direction" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.Distance.Direction" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.Distance.Direction" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.Distance.Direction" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.Distance.Direction" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public readonly double Direction" - }, - { - "lang": "vb", - "value": "Public ReadOnly Direction As Double" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Direction", - "path": "src/CSharp12.cs", - "startLine": 9.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_Distance_Direction.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.Distance.Direction%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L10", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_Distance_Direction", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.PrimaryConstructors.Distance.Magnitude", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.PrimaryConstructors.Distance", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Magnitude" - }, - { - "lang": "vb", - "value": "Magnitude" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.Distance.Magnitude" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.Distance.Magnitude" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.Distance.Magnitude" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.Distance.Magnitude" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public readonly double Magnitude" - }, - { - "lang": "vb", - "value": "Public ReadOnly Magnitude As Double" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Magnitude", - "path": "src/CSharp12.cs", - "startLine": 8.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_Distance_Magnitude.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.Distance.Magnitude%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L9", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_Distance_Magnitude", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.Distance" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.Distance" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.Distance" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.Distance" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.Distance" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.Distance" - } - ], - "type": "struct", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Distance", - "path": "src/CSharp12.cs", - "startLine": 6.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public readonly struct PrimaryConstructors.Distance" - }, - { - "lang": "vb", - "value": "Public Structure PrimaryConstructors.Distance" - } - ] - }, - "level": 0.0, - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp12.PrimaryConstructors.Distance.yml", - "_path": "api/CSharp12.PrimaryConstructors.Distance.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors_Distance.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors.Distance%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L7", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_Distance", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.html.view.verified.json deleted file mode 100644 index bc6729c96fa..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.html.view.verified.json +++ /dev/null @@ -1,692 +0,0 @@ -{ - "uid": "CSharp12.PrimaryConstructors", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "PrimaryConstructors" - }, - { - "lang": "vb", - "value": "PrimaryConstructors" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors" - }, - { - "lang": "vb", - "value": "PrimaryConstructors" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "PrimaryConstructors", - "path": "src/CSharp12.cs", - "startLine": 4.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class PrimaryConstructors" - }, - { - "lang": "vb", - "value": "Public Class PrimaryConstructors" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp12.PrimaryConstructors.yml", - "_path": "api/CSharp12.PrimaryConstructors.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_PrimaryConstructors.md&value=---%0Auid%3A%20CSharp12.PrimaryConstructors%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L5", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.RefReadOnlyParameters.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.RefReadOnlyParameters.html.view.verified.json deleted file mode 100644 index d05dcc5dbcc..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.RefReadOnlyParameters.html.view.verified.json +++ /dev/null @@ -1,881 +0,0 @@ -{ - "uid": "CSharp12.RefReadOnlyParameters", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp12.RefReadOnlyParameters.Foo(System.Int32@)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp12.RefReadOnlyParameters", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Foo(ref readonly int)" - }, - { - "lang": "vb", - "value": "Foo(Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RefReadOnlyParameters.Foo(ref readonly int)" - }, - { - "lang": "vb", - "value": "RefReadOnlyParameters.Foo(Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.RefReadOnlyParameters.Foo(ref readonly int)" - }, - { - "lang": "vb", - "value": "CSharp12.RefReadOnlyParameters.Foo(Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Foo(ref readonly int bar)" - }, - { - "lang": "vb", - "value": "Public Sub Foo(bar As Integer)" - } - ], - "parameters": [ - { - "id": "bar", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Foo", - "path": "src/CSharp12.cs", - "startLine": 84.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp12", - "overload": { - "uid": "CSharp12.RefReadOnlyParameters.Foo*", - "name": [ - { - "lang": "csharp", - "value": "Foo" - }, - { - "lang": "vb", - "value": "Foo" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RefReadOnlyParameters.Foo" - }, - { - "lang": "vb", - "value": "RefReadOnlyParameters.Foo" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.RefReadOnlyParameters.Foo" - }, - { - "lang": "vb", - "value": "CSharp12.RefReadOnlyParameters.Foo" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp12_RefReadOnlyParameters_Foo_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_RefReadOnlyParameters_Foo_System_Int32__.md&value=---%0Auid%3A%20CSharp12.RefReadOnlyParameters.Foo(System.Int32%40)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L85", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_RefReadOnlyParameters_Foo_System_Int32__", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "RefReadOnlyParameters" - }, - { - "lang": "vb", - "value": "RefReadOnlyParameters" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RefReadOnlyParameters" - }, - { - "lang": "vb", - "value": "RefReadOnlyParameters" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.RefReadOnlyParameters" - }, - { - "lang": "vb", - "value": "CSharp12.RefReadOnlyParameters" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp12.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "RefReadOnlyParameters", - "path": "src/CSharp12.cs", - "startLine": 82.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp12.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class RefReadOnlyParameters" - }, - { - "lang": "vb", - "value": "Public Class RefReadOnlyParameters" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp12.RefReadOnlyParameters.yml", - "_path": "api/CSharp12.RefReadOnlyParameters.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp12_RefReadOnlyParameters.md&value=---%0Auid%3A%20CSharp12.RefReadOnlyParameters%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp12.cs/#L83", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_RefReadOnlyParameters", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.html.view.verified.json deleted file mode 100644 index 90daa0d0b52..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.html.view.verified.json +++ /dev/null @@ -1,690 +0,0 @@ -{ - "uid": "CSharp12", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "CSharp12.CollectionExpressions", - "isExtensionMethod": false, - "href": "CSharp12.CollectionExpressions.html", - "name": [ - { - "lang": "csharp", - "value": "CollectionExpressions" - }, - { - "lang": "vb", - "value": "CollectionExpressions" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CollectionExpressions" - }, - { - "lang": "vb", - "value": "CollectionExpressions" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.CollectionExpressions" - }, - { - "lang": "vb", - "value": "CSharp12.CollectionExpressions" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_CollectionExpressions", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.DefaultLambdaParameters", - "isExtensionMethod": false, - "href": "CSharp12.DefaultLambdaParameters.html", - "name": [ - { - "lang": "csharp", - "value": "DefaultLambdaParameters" - }, - { - "lang": "vb", - "value": "DefaultLambdaParameters" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultLambdaParameters" - }, - { - "lang": "vb", - "value": "DefaultLambdaParameters" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.DefaultLambdaParameters" - }, - { - "lang": "vb", - "value": "CSharp12.DefaultLambdaParameters" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_DefaultLambdaParameters", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.PrimaryConstructors", - "isExtensionMethod": false, - "href": "CSharp12.PrimaryConstructors.html", - "name": [ - { - "lang": "csharp", - "value": "PrimaryConstructors" - }, - { - "lang": "vb", - "value": "PrimaryConstructors" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors" - }, - { - "lang": "vb", - "value": "PrimaryConstructors" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.PrimaryConstructors.BankAccount", - "isExtensionMethod": false, - "parent": "CSharp12", - "href": "CSharp12.PrimaryConstructors.html", - "name": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.BankAccount" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.BankAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.BankAccount" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_BankAccount", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.PrimaryConstructors.CheckAccount", - "isExtensionMethod": false, - "href": "CSharp12.PrimaryConstructors.html", - "name": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.CheckAccount" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.CheckAccount" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.CheckAccount" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.CheckAccount" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_CheckAccount", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.RefReadOnlyParameters", - "isExtensionMethod": false, - "href": "CSharp12.RefReadOnlyParameters.html", - "name": [ - { - "lang": "csharp", - "value": "RefReadOnlyParameters" - }, - { - "lang": "vb", - "value": "RefReadOnlyParameters" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RefReadOnlyParameters" - }, - { - "lang": "vb", - "value": "RefReadOnlyParameters" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.RefReadOnlyParameters" - }, - { - "lang": "vb", - "value": "CSharp12.RefReadOnlyParameters" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_RefReadOnlyParameters", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inStruct": true, - "typePropertyName": "inStruct", - "id": "structs", - "children": [ - { - "uid": "CSharp12.InlineArrays", - "isExtensionMethod": false, - "href": "CSharp12.InlineArrays.html", - "name": [ - { - "lang": "csharp", - "value": "InlineArrays" - }, - { - "lang": "vb", - "value": "InlineArrays" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "InlineArrays" - }, - { - "lang": "vb", - "value": "InlineArrays" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.InlineArrays" - }, - { - "lang": "vb", - "value": "CSharp12.InlineArrays" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_InlineArrays", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp12.PrimaryConstructors.Distance", - "isExtensionMethod": false, - "href": "CSharp12.PrimaryConstructors.html", - "name": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.Distance" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.Distance" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.Distance" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.Distance" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12.PrimaryConstructors.Distance" - }, - { - "lang": "vb", - "value": "CSharp12.PrimaryConstructors.Distance" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "PrimaryConstructors.Distance" - }, - { - "lang": "vb", - "value": "PrimaryConstructors.Distance" - } - ], - "level": 0.0, - "summary": "", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12_PrimaryConstructors_Distance", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp12" - }, - { - "lang": "vb", - "value": "CSharp12" - } - ], - "type": "namespace", - "assemblies": [ - "CSharp" - ], - "level": 0.0, - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp12.yml", - "_path": "api/CSharp12.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp12", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json deleted file mode 100644 index 58a9a043cde..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json +++ /dev/null @@ -1,436 +0,0 @@ -{ - "uid": "CSharp8.DefaultInterfaceMembers.IA", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp8.DefaultInterfaceMembers.IA.M", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.DefaultInterfaceMembers.IA", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "M()" - }, - { - "lang": "vb", - "value": "M()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.IA.M()" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.IA.M()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.IA.M()" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.IA.M()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "void M()" - }, - { - "lang": "vb", - "value": "Sub M()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "M", - "path": "src/CSharp8.cs", - "startLine": 50.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.DefaultInterfaceMembers.IA.M*", - "name": [ - { - "lang": "csharp", - "value": "M" - }, - { - "lang": "vb", - "value": "M" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.IA.M" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.IA.M" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.IA.M" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.IA.M" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_DefaultInterfaceMembers_IA_M_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DefaultInterfaceMembers_IA_M.md&value=---%0Auid%3A%20CSharp8.DefaultInterfaceMembers.IA.M%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L51", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers_IA_M", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.IA" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.IA" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.IA" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.IA" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.IA" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.IA" - } - ], - "type": "interface", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "IA", - "path": "src/CSharp8.cs", - "startLine": 48.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public interface DefaultInterfaceMembers.IA" - }, - { - "lang": "vb", - "value": "Public Interface DefaultInterfaceMembers.IA" - } - ] - }, - "level": 0.0, - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp8.DefaultInterfaceMembers.IA.yml", - "_path": "api/CSharp8.DefaultInterfaceMembers.IA.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DefaultInterfaceMembers_IA.md&value=---%0Auid%3A%20CSharp8.DefaultInterfaceMembers.IA%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L49", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers_IA", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inInterface": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json deleted file mode 100644 index cba9456b9b8..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json +++ /dev/null @@ -1,692 +0,0 @@ -{ - "uid": "CSharp8.DefaultInterfaceMembers.Nested", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.Nested" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.Nested" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.Nested" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.Nested" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.Nested" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.Nested" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Nested", - "path": "src/CSharp8.cs", - "startLine": 40.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class DefaultInterfaceMembers.Nested" - }, - { - "lang": "vb", - "value": "Public Class DefaultInterfaceMembers.Nested" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp8.DefaultInterfaceMembers.Nested.yml", - "_path": "api/CSharp8.DefaultInterfaceMembers.Nested.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DefaultInterfaceMembers_Nested.md&value=---%0Auid%3A%20CSharp8.DefaultInterfaceMembers.Nested%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L41", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers_Nested", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json deleted file mode 100644 index 11845406e5b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json +++ /dev/null @@ -1,1075 +0,0 @@ -{ - "uid": "CSharp8.DefaultInterfaceMembers", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CSharp8.DefaultInterfaceMembers.GravitationalConstant", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.DefaultInterfaceMembers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "GravitationalConstant" - }, - { - "lang": "vb", - "value": "GravitationalConstant" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.GravitationalConstant" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.GravitationalConstant" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.GravitationalConstant" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.GravitationalConstant" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public const double GravitationalConstant = 6.673E-11" - }, - { - "lang": "vb", - "value": "Public Const GravitationalConstant As Double = 6.673E-11" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "GravitationalConstant", - "path": "src/CSharp8.cs", - "startLine": 30.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DefaultInterfaceMembers_GravitationalConstant.md&value=---%0Auid%3A%20CSharp8.DefaultInterfaceMembers.GravitationalConstant%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L31", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers_GravitationalConstant", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.DefaultInterfaceMembers.X", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.DefaultInterfaceMembers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "X" - }, - { - "lang": "vb", - "value": "X" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.X" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.X" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.X" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.X" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public const int X = 0" - }, - { - "lang": "vb", - "value": "Public Const X As Integer = 0" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "X", - "path": "src/CSharp8.cs", - "startLine": 29.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DefaultInterfaceMembers_X.md&value=---%0Auid%3A%20CSharp8.DefaultInterfaceMembers.X%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L30", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers_X", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp8.DefaultInterfaceMembers.DoSomething", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.DefaultInterfaceMembers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "DoSomething()" - }, - { - "lang": "vb", - "value": "DoSomething()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.DoSomething()" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.DoSomething()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.DoSomething()" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.DoSomething()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void DoSomething()" - }, - { - "lang": "vb", - "value": "Public Shared Sub DoSomething()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "DoSomething", - "path": "src/CSharp8.cs", - "startLine": 45.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.DefaultInterfaceMembers.DoSomething*", - "name": [ - { - "lang": "csharp", - "value": "DoSomething" - }, - { - "lang": "vb", - "value": "DoSomething" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.DoSomething" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.DoSomething" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.DoSomething" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.DoSomething" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_DefaultInterfaceMembers_DoSomething_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DefaultInterfaceMembers_DoSomething.md&value=---%0Auid%3A%20CSharp8.DefaultInterfaceMembers.DoSomething%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L46", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers_DoSomething", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.DefaultInterfaceMembers.DoSomethingElse", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.DefaultInterfaceMembers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "DoSomethingElse()" - }, - { - "lang": "vb", - "value": "DoSomethingElse()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.DoSomethingElse()" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.DoSomethingElse()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.DoSomethingElse()" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.DoSomethingElse()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void DoSomethingElse()" - }, - { - "lang": "vb", - "value": "Public Shared Sub DoSomethingElse()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "DoSomethingElse", - "path": "src/CSharp8.cs", - "startLine": 46.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.DefaultInterfaceMembers.DoSomethingElse*", - "name": [ - { - "lang": "csharp", - "value": "DoSomethingElse" - }, - { - "lang": "vb", - "value": "DoSomethingElse" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.DoSomethingElse" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.DoSomethingElse" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.DoSomethingElse" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.DoSomethingElse" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_DefaultInterfaceMembers_DoSomethingElse_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DefaultInterfaceMembers_DoSomethingElse.md&value=---%0Auid%3A%20CSharp8.DefaultInterfaceMembers.DoSomethingElse%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L47", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers_DoSomethingElse", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inOperator": true, - "typePropertyName": "inOperator", - "id": "operators", - "children": [ - { - "uid": "CSharp8.DefaultInterfaceMembers.op_UnaryPlus(CSharp8.DefaultInterfaceMembers)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.DefaultInterfaceMembers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator +(DefaultInterfaceMembers)" - }, - { - "lang": "vb", - "value": "+(DefaultInterfaceMembers)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.operator +(DefaultInterfaceMembers)" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.+(DefaultInterfaceMembers)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.operator +(CSharp8.DefaultInterfaceMembers)" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.+(CSharp8.DefaultInterfaceMembers)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static DefaultInterfaceMembers operator +(DefaultInterfaceMembers a)" - }, - { - "lang": "vb", - "value": "Public Shared Operator +(a As DefaultInterfaceMembers) As DefaultInterfaceMembers" - } - ], - "parameters": [ - { - "id": "a", - "type": { - "uid": "CSharp8.DefaultInterfaceMembers", - "name": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "CSharp8.DefaultInterfaceMembers", - "name": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_UnaryPlus", - "path": "src/CSharp8.cs", - "startLine": 33.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.DefaultInterfaceMembers.op_UnaryPlus*", - "name": [ - { - "lang": "csharp", - "value": "operator +" - }, - { - "lang": "vb", - "value": "+" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.operator +" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.+" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.operator +" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.+" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator +" - } - ], - "id": "CSharp8_DefaultInterfaceMembers_op_UnaryPlus_" - }, - "level": 0.0, - "type": "operator", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DefaultInterfaceMembers_op_UnaryPlus_CSharp8_DefaultInterfaceMembers_.md&value=---%0Auid%3A%20CSharp8.DefaultInterfaceMembers.op_UnaryPlus(CSharp8.DefaultInterfaceMembers)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L34", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers_op_UnaryPlus_CSharp8_DefaultInterfaceMembers_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers" - } - ], - "type": "interface", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "DefaultInterfaceMembers", - "path": "src/CSharp8.cs", - "startLine": 27.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public interface DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "Public Interface DefaultInterfaceMembers" - } - ] - }, - "level": 0.0, - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp8.DefaultInterfaceMembers.yml", - "_path": "api/CSharp8.DefaultInterfaceMembers.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DefaultInterfaceMembers.md&value=---%0Auid%3A%20CSharp8.DefaultInterfaceMembers%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L28", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inInterface": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json deleted file mode 100644 index 832c1323191..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json +++ /dev/null @@ -1,865 +0,0 @@ -{ - "uid": "CSharp8.DisposableRefStructs", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp8.DisposableRefStructs.Dispose", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.DisposableRefStructs", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Dispose()" - }, - { - "lang": "vb", - "value": "Dispose()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DisposableRefStructs.Dispose()" - }, - { - "lang": "vb", - "value": "DisposableRefStructs.Dispose()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DisposableRefStructs.Dispose()" - }, - { - "lang": "vb", - "value": "CSharp8.DisposableRefStructs.Dispose()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Dispose()" - }, - { - "lang": "vb", - "value": "Public Sub Dispose()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Dispose", - "path": "src/CSharp8.cs", - "startLine": 56.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.DisposableRefStructs.Dispose*", - "name": [ - { - "lang": "csharp", - "value": "Dispose" - }, - { - "lang": "vb", - "value": "Dispose" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DisposableRefStructs.Dispose" - }, - { - "lang": "vb", - "value": "DisposableRefStructs.Dispose" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DisposableRefStructs.Dispose" - }, - { - "lang": "vb", - "value": "CSharp8.DisposableRefStructs.Dispose" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_DisposableRefStructs_Dispose_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DisposableRefStructs_Dispose.md&value=---%0Auid%3A%20CSharp8.DisposableRefStructs.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L57", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DisposableRefStructs_Dispose", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.DisposableRefStructs.DoSomething", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.DisposableRefStructs", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "DoSomething()" - }, - { - "lang": "vb", - "value": "DoSomething()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DisposableRefStructs.DoSomething()" - }, - { - "lang": "vb", - "value": "DisposableRefStructs.DoSomething()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DisposableRefStructs.DoSomething()" - }, - { - "lang": "vb", - "value": "CSharp8.DisposableRefStructs.DoSomething()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void DoSomething()" - }, - { - "lang": "vb", - "value": "Public Shared Sub DoSomething()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "DoSomething", - "path": "src/CSharp8.cs", - "startLine": 60.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.DisposableRefStructs.DoSomething*", - "name": [ - { - "lang": "csharp", - "value": "DoSomething" - }, - { - "lang": "vb", - "value": "DoSomething" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DisposableRefStructs.DoSomething" - }, - { - "lang": "vb", - "value": "DisposableRefStructs.DoSomething" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DisposableRefStructs.DoSomething" - }, - { - "lang": "vb", - "value": "CSharp8.DisposableRefStructs.DoSomething" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_DisposableRefStructs_DoSomething_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DisposableRefStructs_DoSomething.md&value=---%0Auid%3A%20CSharp8.DisposableRefStructs.DoSomething%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L61", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DisposableRefStructs_DoSomething", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "DisposableRefStructs" - }, - { - "lang": "vb", - "value": "DisposableRefStructs" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DisposableRefStructs" - }, - { - "lang": "vb", - "value": "DisposableRefStructs" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DisposableRefStructs" - }, - { - "lang": "vb", - "value": "CSharp8.DisposableRefStructs" - } - ], - "type": "struct", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "DisposableRefStructs", - "path": "src/CSharp8.cs", - "startLine": 54.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public ref struct DisposableRefStructs" - }, - { - "lang": "vb", - "value": "Public Structure DisposableRefStructs" - } - ] - }, - "level": 0.0, - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp8.DisposableRefStructs.yml", - "_path": "api/CSharp8.DisposableRefStructs.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_DisposableRefStructs.md&value=---%0Auid%3A%20CSharp8.DisposableRefStructs%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L55", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DisposableRefStructs", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json deleted file mode 100644 index 01027e10755..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json +++ /dev/null @@ -1,1014 +0,0 @@ -{ - "uid": "CSharp8.Issue4007", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp8.Issue4007.SomeMethod(System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Issue4007", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "SomeMethod(int)" - }, - { - "lang": "vb", - "value": "SomeMethod(Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue4007.SomeMethod(int)" - }, - { - "lang": "vb", - "value": "Issue4007.SomeMethod(Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Issue4007.SomeMethod(int)" - }, - { - "lang": "vb", - "value": "CSharp8.Issue4007.SomeMethod(Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void SomeMethod(int a)" - }, - { - "lang": "vb", - "value": "Public Sub SomeMethod(a As Integer)" - } - ], - "parameters": [ - { - "id": "a", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "SomeMethod", - "path": "src/CSharp8.cs", - "startLine": 147.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Issue4007.SomeMethod*", - "name": [ - { - "lang": "csharp", - "value": "SomeMethod" - }, - { - "lang": "vb", - "value": "SomeMethod" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue4007.SomeMethod" - }, - { - "lang": "vb", - "value": "Issue4007.SomeMethod" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Issue4007.SomeMethod" - }, - { - "lang": "vb", - "value": "CSharp8.Issue4007.SomeMethod" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Issue4007_SomeMethod_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Issue4007_SomeMethod_System_Int32_.md&value=---%0Auid%3A%20CSharp8.Issue4007.SomeMethod(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L148", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Issue4007_SomeMethod_System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Issue4007.SomeOtherMethod", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Issue4007", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "SomeOtherMethod()" - }, - { - "lang": "vb", - "value": "SomeOtherMethod()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue4007.SomeOtherMethod()" - }, - { - "lang": "vb", - "value": "Issue4007.SomeOtherMethod()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Issue4007.SomeOtherMethod()" - }, - { - "lang": "vb", - "value": "CSharp8.Issue4007.SomeOtherMethod()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void SomeOtherMethod()" - }, - { - "lang": "vb", - "value": "Public Sub SomeOtherMethod()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "SomeOtherMethod", - "path": "src/CSharp8.cs", - "startLine": 157.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Issue4007.SomeOtherMethod*", - "name": [ - { - "lang": "csharp", - "value": "SomeOtherMethod" - }, - { - "lang": "vb", - "value": "SomeOtherMethod" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue4007.SomeOtherMethod" - }, - { - "lang": "vb", - "value": "Issue4007.SomeOtherMethod" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Issue4007.SomeOtherMethod" - }, - { - "lang": "vb", - "value": "CSharp8.Issue4007.SomeOtherMethod" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Issue4007_SomeOtherMethod_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Issue4007_SomeOtherMethod.md&value=---%0Auid%3A%20CSharp8.Issue4007.SomeOtherMethod%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L158", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Issue4007_SomeOtherMethod", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Issue4007" - }, - { - "lang": "vb", - "value": "Issue4007" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue4007" - }, - { - "lang": "vb", - "value": "Issue4007" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Issue4007" - }, - { - "lang": "vb", - "value": "CSharp8.Issue4007" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue4007", - "path": "src/CSharp8.cs", - "startLine": 145.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

This works: .\nThis does not work: .

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Issue4007" - }, - { - "lang": "vb", - "value": "Public Class Issue4007" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp8.Issue4007.yml", - "_path": "api/CSharp8.Issue4007.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Issue4007.md&value=---%0Auid%3A%20CSharp8.Issue4007%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L146", - "description": "This works: . This does not work: .", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CSharp8_Issue4007", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json deleted file mode 100644 index dd76ba34033..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json +++ /dev/null @@ -1,2267 +0,0 @@ -{ - "uid": "CSharp8.Misc", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp8.Misc.AsynchronousStreams", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Misc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "AsynchronousStreams()" - }, - { - "lang": "vb", - "value": "AsynchronousStreams()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.AsynchronousStreams()" - }, - { - "lang": "vb", - "value": "Misc.AsynchronousStreams()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.AsynchronousStreams()" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.AsynchronousStreams()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static Task AsynchronousStreams()" - }, - { - "lang": "vb", - "value": "Public Shared Function AsynchronousStreams() As Task" - } - ], - "return": { - "type": { - "uid": "System.Threading.Tasks.Task", - "name": [ - { - "lang": "csharp", - "value": "Task" - }, - { - "lang": "vb", - "value": "Task" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Task" - }, - { - "lang": "vb", - "value": "Task" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Threading.Tasks.Task" - }, - { - "lang": "vb", - "value": "System.Threading.Tasks.Task" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "AsynchronousStreams", - "path": "src/CSharp8.cs", - "startLine": 97.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Misc.AsynchronousStreams*", - "name": [ - { - "lang": "csharp", - "value": "AsynchronousStreams" - }, - { - "lang": "vb", - "value": "AsynchronousStreams" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.AsynchronousStreams" - }, - { - "lang": "vb", - "value": "Misc.AsynchronousStreams" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.AsynchronousStreams" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.AsynchronousStreams" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Misc_AsynchronousStreams_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Misc_AsynchronousStreams.md&value=---%0Auid%3A%20CSharp8.Misc.AsynchronousStreams%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L98", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc_AsynchronousStreams", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Misc.GenerateSequence", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Misc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "GenerateSequence()" - }, - { - "lang": "vb", - "value": "GenerateSequence()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.GenerateSequence()" - }, - { - "lang": "vb", - "value": "Misc.GenerateSequence()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.GenerateSequence()" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.GenerateSequence()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static IAsyncEnumerable GenerateSequence()" - }, - { - "lang": "vb", - "value": "Public Shared Function GenerateSequence() As IAsyncEnumerable(Of Integer)" - } - ], - "return": { - "type": { - "uid": "System.Collections.Generic.IAsyncEnumerable{System.Int32}", - "definition": "System.Collections.Generic.IAsyncEnumerable`1", - "name": [ - { - "lang": "csharp", - "value": "IAsyncEnumerable" - }, - { - "lang": "vb", - "value": "IAsyncEnumerable(Of Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAsyncEnumerable" - }, - { - "lang": "vb", - "value": "IAsyncEnumerable(Of Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Collections.Generic.IAsyncEnumerable" - }, - { - "lang": "vb", - "value": "System.Collections.Generic.IAsyncEnumerable(Of Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IAsyncEnumerable<int>" - }, - { - "lang": "vb", - "value": "IAsyncEnumerable(Of Integer)" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "GenerateSequence", - "path": "src/CSharp8.cs", - "startLine": 105.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Misc.GenerateSequence*", - "name": [ - { - "lang": "csharp", - "value": "GenerateSequence" - }, - { - "lang": "vb", - "value": "GenerateSequence" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.GenerateSequence" - }, - { - "lang": "vb", - "value": "Misc.GenerateSequence" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.GenerateSequence" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.GenerateSequence" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Misc_GenerateSequence_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Misc_GenerateSequence.md&value=---%0Auid%3A%20CSharp8.Misc.GenerateSequence%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L106", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc_GenerateSequence", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Misc.IndicesAndRanges", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Misc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "IndicesAndRanges()" - }, - { - "lang": "vb", - "value": "IndicesAndRanges()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.IndicesAndRanges()" - }, - { - "lang": "vb", - "value": "Misc.IndicesAndRanges()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.IndicesAndRanges()" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.IndicesAndRanges()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void IndicesAndRanges()" - }, - { - "lang": "vb", - "value": "Public Shared Sub IndicesAndRanges()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "IndicesAndRanges", - "path": "src/CSharp8.cs", - "startLine": 119.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Misc.IndicesAndRanges*", - "name": [ - { - "lang": "csharp", - "value": "IndicesAndRanges" - }, - { - "lang": "vb", - "value": "IndicesAndRanges" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.IndicesAndRanges" - }, - { - "lang": "vb", - "value": "Misc.IndicesAndRanges" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.IndicesAndRanges" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.IndicesAndRanges" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Misc_IndicesAndRanges_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Misc_IndicesAndRanges.md&value=---%0Auid%3A%20CSharp8.Misc.IndicesAndRanges%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L120", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc_IndicesAndRanges", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Misc.IsExpression(System.DateTime)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Misc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "IsExpression(DateTime)" - }, - { - "lang": "vb", - "value": "IsExpression(Date)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.IsExpression(DateTime)" - }, - { - "lang": "vb", - "value": "Misc.IsExpression(Date)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.IsExpression(System.DateTime)" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.IsExpression(Date)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static bool IsExpression(DateTime date)" - }, - { - "lang": "vb", - "value": "Public Shared Function IsExpression([date] As Date) As Boolean" - } - ], - "parameters": [ - { - "id": "date", - "type": { - "uid": "System.DateTime", - "name": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "IsExpression", - "path": "src/CSharp8.cs", - "startLine": 77.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Misc.IsExpression*", - "name": [ - { - "lang": "csharp", - "value": "IsExpression" - }, - { - "lang": "vb", - "value": "IsExpression" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.IsExpression" - }, - { - "lang": "vb", - "value": "Misc.IsExpression" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.IsExpression" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.IsExpression" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Misc_IsExpression_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Misc_IsExpression_System_DateTime_.md&value=---%0Auid%3A%20CSharp8.Misc.IsExpression(System.DateTime)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L78", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc_IsExpression_System_DateTime_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Misc.NullCoalescingAssignment", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Misc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "NullCoalescingAssignment()" - }, - { - "lang": "vb", - "value": "NullCoalescingAssignment()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.NullCoalescingAssignment()" - }, - { - "lang": "vb", - "value": "Misc.NullCoalescingAssignment()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.NullCoalescingAssignment()" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.NullCoalescingAssignment()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void NullCoalescingAssignment()" - }, - { - "lang": "vb", - "value": "Public Shared Sub NullCoalescingAssignment()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "NullCoalescingAssignment", - "path": "src/CSharp8.cs", - "startLine": 127.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Misc.NullCoalescingAssignment*", - "name": [ - { - "lang": "csharp", - "value": "NullCoalescingAssignment" - }, - { - "lang": "vb", - "value": "NullCoalescingAssignment" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.NullCoalescingAssignment" - }, - { - "lang": "vb", - "value": "Misc.NullCoalescingAssignment" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.NullCoalescingAssignment" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.NullCoalescingAssignment" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Misc_NullCoalescingAssignment_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Misc_NullCoalescingAssignment.md&value=---%0Auid%3A%20CSharp8.Misc.NullCoalescingAssignment%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L128", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc_NullCoalescingAssignment", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Misc.StackallocInNestedExpressions", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Misc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "StackallocInNestedExpressions()" - }, - { - "lang": "vb", - "value": "StackallocInNestedExpressions()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.StackallocInNestedExpressions()" - }, - { - "lang": "vb", - "value": "Misc.StackallocInNestedExpressions()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.StackallocInNestedExpressions()" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.StackallocInNestedExpressions()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void StackallocInNestedExpressions()" - }, - { - "lang": "vb", - "value": "Public Shared Sub StackallocInNestedExpressions()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "StackallocInNestedExpressions", - "path": "src/CSharp8.cs", - "startLine": 133.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Misc.StackallocInNestedExpressions*", - "name": [ - { - "lang": "csharp", - "value": "StackallocInNestedExpressions" - }, - { - "lang": "vb", - "value": "StackallocInNestedExpressions" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.StackallocInNestedExpressions" - }, - { - "lang": "vb", - "value": "Misc.StackallocInNestedExpressions" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.StackallocInNestedExpressions" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.StackallocInNestedExpressions" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Misc_StackallocInNestedExpressions_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Misc_StackallocInNestedExpressions.md&value=---%0Auid%3A%20CSharp8.Misc.StackallocInNestedExpressions%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L134", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc_StackallocInNestedExpressions", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Misc.StaticLocalFunctions(System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Misc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "StaticLocalFunctions(int)" - }, - { - "lang": "vb", - "value": "StaticLocalFunctions(Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.StaticLocalFunctions(int)" - }, - { - "lang": "vb", - "value": "Misc.StaticLocalFunctions(Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.StaticLocalFunctions(int)" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.StaticLocalFunctions(Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static int StaticLocalFunctions(int n)" - }, - { - "lang": "vb", - "value": "Public Shared Function StaticLocalFunctions(n As Integer) As Integer" - } - ], - "parameters": [ - { - "id": "n", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "StaticLocalFunctions", - "path": "src/CSharp8.cs", - "startLine": 88.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Misc.StaticLocalFunctions*", - "name": [ - { - "lang": "csharp", - "value": "StaticLocalFunctions" - }, - { - "lang": "vb", - "value": "StaticLocalFunctions" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.StaticLocalFunctions" - }, - { - "lang": "vb", - "value": "Misc.StaticLocalFunctions" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.StaticLocalFunctions" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.StaticLocalFunctions" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Misc_StaticLocalFunctions_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Misc_StaticLocalFunctions_System_Int32_.md&value=---%0Auid%3A%20CSharp8.Misc.StaticLocalFunctions(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L89", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc_StaticLocalFunctions_System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Misc.SwitchExpression(System.ConsoleColor)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Misc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "SwitchExpression(ConsoleColor)" - }, - { - "lang": "vb", - "value": "SwitchExpression(ConsoleColor)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.SwitchExpression(ConsoleColor)" - }, - { - "lang": "vb", - "value": "Misc.SwitchExpression(ConsoleColor)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.SwitchExpression(System.ConsoleColor)" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.SwitchExpression(System.ConsoleColor)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static bool SwitchExpression(ConsoleColor color)" - }, - { - "lang": "vb", - "value": "Public Shared Function SwitchExpression(color As ConsoleColor) As Boolean" - } - ], - "parameters": [ - { - "id": "color", - "type": { - "uid": "System.ConsoleColor", - "name": [ - { - "lang": "csharp", - "value": "ConsoleColor" - }, - { - "lang": "vb", - "value": "ConsoleColor" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ConsoleColor" - }, - { - "lang": "vb", - "value": "ConsoleColor" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ConsoleColor" - }, - { - "lang": "vb", - "value": "System.ConsoleColor" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "SwitchExpression", - "path": "src/CSharp8.cs", - "startLine": 80.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Misc.SwitchExpression*", - "name": [ - { - "lang": "csharp", - "value": "SwitchExpression" - }, - { - "lang": "vb", - "value": "SwitchExpression" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.SwitchExpression" - }, - { - "lang": "vb", - "value": "Misc.SwitchExpression" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.SwitchExpression" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.SwitchExpression" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Misc_SwitchExpression_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Misc_SwitchExpression_System_ConsoleColor_.md&value=---%0Auid%3A%20CSharp8.Misc.SwitchExpression(System.ConsoleColor)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L81", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc_SwitchExpression_System_ConsoleColor_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Misc.UsingDeclaration", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.Misc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "UsingDeclaration()" - }, - { - "lang": "vb", - "value": "UsingDeclaration()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.UsingDeclaration()" - }, - { - "lang": "vb", - "value": "Misc.UsingDeclaration()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.UsingDeclaration()" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.UsingDeclaration()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void UsingDeclaration()" - }, - { - "lang": "vb", - "value": "Public Shared Sub UsingDeclaration()" - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "UsingDeclaration", - "path": "src/CSharp8.cs", - "startLine": 114.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.Misc.UsingDeclaration*", - "name": [ - { - "lang": "csharp", - "value": "UsingDeclaration" - }, - { - "lang": "vb", - "value": "UsingDeclaration" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc.UsingDeclaration" - }, - { - "lang": "vb", - "value": "Misc.UsingDeclaration" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc.UsingDeclaration" - }, - { - "lang": "vb", - "value": "CSharp8.Misc.UsingDeclaration" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_Misc_UsingDeclaration_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Misc_UsingDeclaration.md&value=---%0Auid%3A%20CSharp8.Misc.UsingDeclaration%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L115", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc_UsingDeclaration", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Misc" - }, - { - "lang": "vb", - "value": "Misc" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc" - }, - { - "lang": "vb", - "value": "Misc" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc" - }, - { - "lang": "vb", - "value": "CSharp8.Misc" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Misc", - "path": "src/CSharp8.cs", - "startLine": 75.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Misc" - }, - { - "lang": "vb", - "value": "Public Class Misc" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp8.Misc.yml", - "_path": "api/CSharp8.Misc.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_Misc.md&value=---%0Auid%3A%20CSharp8.Misc%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L76", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json deleted file mode 100644 index ffb55fb5a22..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json +++ /dev/null @@ -1,1257 +0,0 @@ -{ - "uid": "CSharp8.NullableReferenceTypes", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CSharp8.NullableReferenceTypes.Field", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.NullableReferenceTypes", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Field" - }, - { - "lang": "vb", - "value": "Field" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NullableReferenceTypes.Field" - }, - { - "lang": "vb", - "value": "NullableReferenceTypes.Field" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.NullableReferenceTypes.Field" - }, - { - "lang": "vb", - "value": "CSharp8.NullableReferenceTypes.Field" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string? Field" - }, - { - "lang": "vb", - "value": "Public Field As String" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Field", - "path": "src/CSharp8.cs", - "startLine": 70.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_NullableReferenceTypes_Field.md&value=---%0Auid%3A%20CSharp8.NullableReferenceTypes.Field%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L71", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_NullableReferenceTypes_Field", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp8.NullableReferenceTypes.Property", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.NullableReferenceTypes", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Property" - }, - { - "lang": "vb", - "value": "Property" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NullableReferenceTypes.Property" - }, - { - "lang": "vb", - "value": "NullableReferenceTypes.Property" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.NullableReferenceTypes.Property" - }, - { - "lang": "vb", - "value": "CSharp8.NullableReferenceTypes.Property" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string? Property { get; set; }" - }, - { - "lang": "vb", - "value": "Public Property [Property] As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Property", - "path": "src/CSharp8.cs", - "startLine": 68.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.NullableReferenceTypes.Property*", - "name": [ - { - "lang": "csharp", - "value": "Property" - }, - { - "lang": "vb", - "value": "Property" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NullableReferenceTypes.Property" - }, - { - "lang": "vb", - "value": "NullableReferenceTypes.Property" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.NullableReferenceTypes.Property" - }, - { - "lang": "vb", - "value": "CSharp8.NullableReferenceTypes.Property" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_NullableReferenceTypes_Property_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_NullableReferenceTypes_Property.md&value=---%0Auid%3A%20CSharp8.NullableReferenceTypes.Property%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L69", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_NullableReferenceTypes_Property", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp8.NullableReferenceTypes.DoSomething(System.Collections.Generic.List{System.String})", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.NullableReferenceTypes", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "DoSomething(List?)" - }, - { - "lang": "vb", - "value": "DoSomething(List(Of String))" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NullableReferenceTypes.DoSomething(List?)" - }, - { - "lang": "vb", - "value": "NullableReferenceTypes.DoSomething(List(Of String))" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.NullableReferenceTypes.DoSomething(System.Collections.Generic.List?)" - }, - { - "lang": "vb", - "value": "CSharp8.NullableReferenceTypes.DoSomething(System.Collections.Generic.List(Of String))" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static (string?, object?)? DoSomething(List? name = null)" - }, - { - "lang": "vb", - "value": "Public Shared Function DoSomething(name As List(Of String) = Nothing) As (String, Object)?" - } - ], - "parameters": [ - { - "id": "name", - "type": { - "uid": "System.Collections.Generic.List{System.String}", - "definition": "System.Collections.Generic.List`1", - "name": [ - { - "lang": "csharp", - "value": "List" - }, - { - "lang": "vb", - "value": "List(Of String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "List" - }, - { - "lang": "vb", - "value": "List(Of String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Collections.Generic.List" - }, - { - "lang": "vb", - "value": "System.Collections.Generic.List(Of String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "List<string>" - }, - { - "lang": "vb", - "value": "List(Of String)" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.Nullable{System.ValueTuple{System.String,System.Object}}", - "definition": "System.Nullable`1", - "name": [ - { - "lang": "csharp", - "value": "(string, object)?" - }, - { - "lang": "vb", - "value": "(String, Object)?" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "(string, object)?" - }, - { - "lang": "vb", - "value": "(String, Object)?" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "(string, object)?" - }, - { - "lang": "vb", - "value": "(String, Object)?" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "(string, object)?" - }, - { - "lang": "vb", - "value": "(String, Object)?" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "DoSomething", - "path": "src/CSharp8.cs", - "startLine": 72.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.NullableReferenceTypes.DoSomething*", - "name": [ - { - "lang": "csharp", - "value": "DoSomething" - }, - { - "lang": "vb", - "value": "DoSomething" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NullableReferenceTypes.DoSomething" - }, - { - "lang": "vb", - "value": "NullableReferenceTypes.DoSomething" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.NullableReferenceTypes.DoSomething" - }, - { - "lang": "vb", - "value": "CSharp8.NullableReferenceTypes.DoSomething" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_NullableReferenceTypes_DoSomething_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_NullableReferenceTypes_DoSomething_System_Collections_Generic_List_System_String__.md&value=---%0Auid%3A%20CSharp8.NullableReferenceTypes.DoSomething(System.Collections.Generic.List%7BSystem.String%7D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L73", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_NullableReferenceTypes_DoSomething_System_Collections_Generic_List_System_String__", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "NullableReferenceTypes" - }, - { - "lang": "vb", - "value": "NullableReferenceTypes" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NullableReferenceTypes" - }, - { - "lang": "vb", - "value": "NullableReferenceTypes" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.NullableReferenceTypes" - }, - { - "lang": "vb", - "value": "CSharp8.NullableReferenceTypes" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "NullableReferenceTypes", - "path": "src/CSharp8.cs", - "startLine": 66.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class NullableReferenceTypes" - }, - { - "lang": "vb", - "value": "Public Class NullableReferenceTypes" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp8.NullableReferenceTypes.yml", - "_path": "api/CSharp8.NullableReferenceTypes.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_NullableReferenceTypes.md&value=---%0Auid%3A%20CSharp8.NullableReferenceTypes%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L67", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_NullableReferenceTypes", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json deleted file mode 100644 index 55dad054b6b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json +++ /dev/null @@ -1,1497 +0,0 @@ -{ - "uid": "CSharp8.ReadOnlyMembers", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp8.ReadOnlyMembers.Counter", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.ReadOnlyMembers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Counter" - }, - { - "lang": "vb", - "value": "Counter" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers.Counter" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers.Counter" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers.Counter" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers.Counter" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public int Counter { readonly get; set; }" - }, - { - "lang": "vb", - "value": "Public Property Counter As Integer" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Counter", - "path": "src/CSharp8.cs", - "startLine": 20.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.ReadOnlyMembers.Counter*", - "name": [ - { - "lang": "csharp", - "value": "Counter" - }, - { - "lang": "vb", - "value": "Counter" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers.Counter" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers.Counter" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers.Counter" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers.Counter" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_ReadOnlyMembers_Counter_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_ReadOnlyMembers_Counter.md&value=---%0Auid%3A%20CSharp8.ReadOnlyMembers.Counter%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L21", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_ReadOnlyMembers_Counter", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.ReadOnlyMembers.X", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.ReadOnlyMembers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "X" - }, - { - "lang": "vb", - "value": "X" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers.X" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers.X" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers.X" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers.X" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public readonly int X { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property X As Integer" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "X", - "path": "src/CSharp8.cs", - "startLine": 9.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.ReadOnlyMembers.X*", - "name": [ - { - "lang": "csharp", - "value": "X" - }, - { - "lang": "vb", - "value": "X" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers.X" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers.X" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers.X" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers.X" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_ReadOnlyMembers_X_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_ReadOnlyMembers_X.md&value=---%0Auid%3A%20CSharp8.ReadOnlyMembers.X%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L10", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_ReadOnlyMembers_X", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.ReadOnlyMembers.Y", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.ReadOnlyMembers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Y" - }, - { - "lang": "vb", - "value": "Y" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers.Y" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers.Y" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers.Y" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers.Y" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public readonly int Y { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property Y As Integer" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Y", - "path": "src/CSharp8.cs", - "startLine": 10.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.ReadOnlyMembers.Y*", - "name": [ - { - "lang": "csharp", - "value": "Y" - }, - { - "lang": "vb", - "value": "Y" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers.Y" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers.Y" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers.Y" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers.Y" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_ReadOnlyMembers_Y_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_ReadOnlyMembers_Y.md&value=---%0Auid%3A%20CSharp8.ReadOnlyMembers.Y%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L11", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_ReadOnlyMembers_Y", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp8.ReadOnlyMembers.Sum", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.ReadOnlyMembers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Sum()" - }, - { - "lang": "vb", - "value": "Sum()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers.Sum()" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers.Sum()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers.Sum()" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers.Sum()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public readonly double Sum()" - }, - { - "lang": "vb", - "value": "Public Function Sum() As Double" - } - ], - "return": { - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Sum", - "path": "src/CSharp8.cs", - "startLine": 12.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "overload": { - "uid": "CSharp8.ReadOnlyMembers.Sum*", - "name": [ - { - "lang": "csharp", - "value": "Sum" - }, - { - "lang": "vb", - "value": "Sum" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers.Sum" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers.Sum" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers.Sum" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers.Sum" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_ReadOnlyMembers_Sum_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_ReadOnlyMembers_Sum.md&value=---%0Auid%3A%20CSharp8.ReadOnlyMembers.Sum%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L13", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_ReadOnlyMembers_Sum", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.ReadOnlyMembers.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp8.ReadOnlyMembers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers.ToString()" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers.ToString()" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public override readonly string ToString()" - }, - { - "lang": "vb", - "value": "Public Overrides Function ToString() As String" - } - ], - "return": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

The fully qualified type name.

\n" - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ToString", - "path": "src/CSharp8.cs", - "startLine": 17.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp8", - "example": [], - "overridden": { - "uid": "System.ValueType.ToString", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ] - }, - "overload": { - "uid": "CSharp8.ReadOnlyMembers.ToString*", - "name": [ - { - "lang": "csharp", - "value": "ToString" - }, - { - "lang": "vb", - "value": "ToString" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers.ToString" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers.ToString" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers.ToString" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers.ToString" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp8_ReadOnlyMembers_ToString_" - }, - "level": 0.0, - "type": "method", - "summary": "

Returns the fully qualified type name of this instance.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_ReadOnlyMembers_ToString.md&value=---%0Auid%3A%20CSharp8.ReadOnlyMembers.ToString%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L18", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CSharp8_ReadOnlyMembers_ToString", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers" - } - ], - "type": "struct", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp8.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ReadOnlyMembers", - "path": "src/CSharp8.cs", - "startLine": 7.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp8.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public struct ReadOnlyMembers" - }, - { - "lang": "vb", - "value": "Public Structure ReadOnlyMembers" - } - ] - }, - "level": 0.0, - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp8.ReadOnlyMembers.yml", - "_path": "api/CSharp8.ReadOnlyMembers.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp8_ReadOnlyMembers.md&value=---%0Auid%3A%20CSharp8.ReadOnlyMembers%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp8.cs/#L8", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_ReadOnlyMembers", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.html.view.verified.json deleted file mode 100644 index 5a0fcddbdbe..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.html.view.verified.json +++ /dev/null @@ -1,697 +0,0 @@ -{ - "uid": "CSharp8", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "CSharp8.DefaultInterfaceMembers.Nested", - "isExtensionMethod": false, - "href": "CSharp8.DefaultInterfaceMembers.html", - "name": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.Nested" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.Nested" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.Nested" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.Nested" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.Nested" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.Nested" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.Nested" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.Nested" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers_Nested", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Issue4007", - "isExtensionMethod": false, - "href": "CSharp8.Issue4007.html", - "name": [ - { - "lang": "csharp", - "value": "Issue4007" - }, - { - "lang": "vb", - "value": "Issue4007" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue4007" - }, - { - "lang": "vb", - "value": "Issue4007" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Issue4007" - }, - { - "lang": "vb", - "value": "CSharp8.Issue4007" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

This works: .\nThis does not work: .

\n", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Issue4007", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.Misc", - "isExtensionMethod": false, - "href": "CSharp8.Misc.html", - "name": [ - { - "lang": "csharp", - "value": "Misc" - }, - { - "lang": "vb", - "value": "Misc" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Misc" - }, - { - "lang": "vb", - "value": "Misc" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.Misc" - }, - { - "lang": "vb", - "value": "CSharp8.Misc" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_Misc", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.NullableReferenceTypes", - "isExtensionMethod": false, - "href": "CSharp8.NullableReferenceTypes.html", - "name": [ - { - "lang": "csharp", - "value": "NullableReferenceTypes" - }, - { - "lang": "vb", - "value": "NullableReferenceTypes" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NullableReferenceTypes" - }, - { - "lang": "vb", - "value": "NullableReferenceTypes" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.NullableReferenceTypes" - }, - { - "lang": "vb", - "value": "CSharp8.NullableReferenceTypes" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_NullableReferenceTypes", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inStruct": true, - "typePropertyName": "inStruct", - "id": "structs", - "children": [ - { - "uid": "CSharp8.DisposableRefStructs", - "isExtensionMethod": false, - "href": "CSharp8.DisposableRefStructs.html", - "name": [ - { - "lang": "csharp", - "value": "DisposableRefStructs" - }, - { - "lang": "vb", - "value": "DisposableRefStructs" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DisposableRefStructs" - }, - { - "lang": "vb", - "value": "DisposableRefStructs" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DisposableRefStructs" - }, - { - "lang": "vb", - "value": "CSharp8.DisposableRefStructs" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DisposableRefStructs", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.ReadOnlyMembers", - "isExtensionMethod": false, - "href": "CSharp8.ReadOnlyMembers.html", - "name": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ReadOnlyMembers" - }, - { - "lang": "vb", - "value": "ReadOnlyMembers" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.ReadOnlyMembers" - }, - { - "lang": "vb", - "value": "CSharp8.ReadOnlyMembers" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_ReadOnlyMembers", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inInterface": true, - "typePropertyName": "inInterface", - "id": "interfaces", - "children": [ - { - "uid": "CSharp8.DefaultInterfaceMembers", - "isExtensionMethod": false, - "parent": "CSharp8", - "href": "CSharp8.DefaultInterfaceMembers.html", - "name": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "interface", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp8.DefaultInterfaceMembers.IA", - "isExtensionMethod": false, - "href": "CSharp8.DefaultInterfaceMembers.html", - "name": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.IA" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.IA" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.IA" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.IA" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8.DefaultInterfaceMembers.IA" - }, - { - "lang": "vb", - "value": "CSharp8.DefaultInterfaceMembers.IA" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "DefaultInterfaceMembers.IA" - }, - { - "lang": "vb", - "value": "DefaultInterfaceMembers.IA" - } - ], - "level": 0.0, - "summary": "", - "type": "interface", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8_DefaultInterfaceMembers_IA", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp8" - }, - { - "lang": "vb", - "value": "CSharp8" - } - ], - "type": "namespace", - "assemblies": [ - "CSharp" - ], - "level": 0.0, - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp8.yml", - "_path": "api/CSharp8.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp8", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json deleted file mode 100644 index be2c8d1ff10..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json +++ /dev/null @@ -1,1092 +0,0 @@ -{ - "uid": "CSharp9.FunctionPointers", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CSharp9.FunctionPointers.Example(System.Action{System.Int32},,,,,)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.FunctionPointers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Example(Action, delegate*, delegate*, delegate* unmanaged, delegate* unmanaged[Cdecl], delegate* unmanaged[Stdcall, SuppressGCTransition])" - }, - { - "lang": "vb", - "value": "Example(Action(Of Integer), , , , , )" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "FunctionPointers.Example(Action, delegate*, delegate*, delegate* unmanaged, delegate* unmanaged[Cdecl], delegate* unmanaged[Stdcall, SuppressGCTransition])" - }, - { - "lang": "vb", - "value": "FunctionPointers.Example(Action(Of Integer), , , , , )" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.FunctionPointers.Example(System.Action, delegate*, delegate*, delegate* unmanaged, delegate* unmanaged[Cdecl], delegate* unmanaged[Stdcall, SuppressGCTransition])" - }, - { - "lang": "vb", - "value": "CSharp9.FunctionPointers.Example(System.Action(Of Integer), , , , , )" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void Example(Action a, delegate* b, delegate* c, delegate* unmanaged d, delegate* unmanaged[Cdecl] e, delegate* unmanaged[Stdcall, SuppressGCTransition] f)" - }, - { - "lang": "vb", - "value": "Public Shared Sub Example(a As Action(Of Integer), b As , c As , d As , e As , f As )" - } - ], - "parameters": [ - { - "id": "a", - "type": { - "uid": "System.Action{System.Int32}", - "definition": "System.Action`1", - "name": [ - { - "lang": "csharp", - "value": "Action" - }, - { - "lang": "vb", - "value": "Action(Of Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Action" - }, - { - "lang": "vb", - "value": "Action(Of Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Action" - }, - { - "lang": "vb", - "value": "System.Action(Of Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Action<int>" - }, - { - "lang": "vb", - "value": "Action(Of Integer)" - } - ] - } - }, - { - "id": "b", - "type": { - "uid": "delegate*", - "name": [ - { - "lang": "csharp", - "value": "delegate*" - }, - { - "lang": "vb", - "value": "delegate*" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "delegate*" - }, - { - "lang": "vb", - "value": "delegate*" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "delegate*" - }, - { - "lang": "vb", - "value": "delegate*" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "delegate*<int, void>" - } - ] - } - }, - { - "id": "c", - "type": { - "uid": "delegate*", - "name": [ - { - "lang": "csharp", - "value": "delegate*" - }, - { - "lang": "vb", - "value": "delegate*" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "delegate*" - }, - { - "lang": "vb", - "value": "delegate*" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "delegate*" - }, - { - "lang": "vb", - "value": "delegate*" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "delegate*<int, int>" - } - ] - } - }, - { - "id": "d", - "type": { - "uid": "delegate* unmanaged", - "name": [ - { - "lang": "csharp", - "value": "delegate* unmanaged" - }, - { - "lang": "vb", - "value": "delegate* unmanaged" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "delegate* unmanaged" - }, - { - "lang": "vb", - "value": "delegate* unmanaged" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "delegate* unmanaged" - }, - { - "lang": "vb", - "value": "delegate* unmanaged" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "delegate* unmanaged<int, int>" - } - ] - } - }, - { - "id": "e", - "type": { - "uid": "delegate* unmanaged[Cdecl]", - "name": [ - { - "lang": "csharp", - "value": "delegate* unmanaged[Cdecl]" - }, - { - "lang": "vb", - "value": "delegate* unmanaged[Cdecl]" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "delegate* unmanaged[Cdecl]" - }, - { - "lang": "vb", - "value": "delegate* unmanaged[Cdecl]" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "delegate* unmanaged[Cdecl]" - }, - { - "lang": "vb", - "value": "delegate* unmanaged[Cdecl]" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "delegate* unmanaged[]<int, int>" - } - ] - } - }, - { - "id": "f", - "type": { - "uid": "delegate* unmanaged[Stdcall, SuppressGCTransition]", - "name": [ - { - "lang": "csharp", - "value": "delegate* unmanaged[Stdcall, SuppressGCTransition]" - }, - { - "lang": "vb", - "value": "delegate* unmanaged[Stdcall, SuppressGCTransition]" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "delegate* unmanaged[Stdcall, SuppressGCTransition]" - }, - { - "lang": "vb", - "value": "delegate* unmanaged[Stdcall, SuppressGCTransition]" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "delegate* unmanaged[Stdcall, SuppressGCTransition]" - }, - { - "lang": "vb", - "value": "delegate* unmanaged[Stdcall, SuppressGCTransition]" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "delegate* unmanaged[Stdcall, SuppressGCTransition]<int, int>" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Example", - "path": "src/CSharp9.cs", - "startLine": 29.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "overload": { - "uid": "CSharp9.FunctionPointers.Example*", - "name": [ - { - "lang": "csharp", - "value": "Example" - }, - { - "lang": "vb", - "value": "Example" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "FunctionPointers.Example" - }, - { - "lang": "vb", - "value": "FunctionPointers.Example" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.FunctionPointers.Example" - }, - { - "lang": "vb", - "value": "CSharp9.FunctionPointers.Example" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp9_FunctionPointers_Example_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_FunctionPointers_Example_System_Action_System_Int32_______.md&value=---%0Auid%3A%20CSharp9.FunctionPointers.Example(System.Action%7BSystem.Int32%7D%2C%2C%2C%2C%2C)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L30", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_FunctionPointers_Example_System_Action_System_Int32_______", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "FunctionPointers" - }, - { - "lang": "vb", - "value": "FunctionPointers" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "FunctionPointers" - }, - { - "lang": "vb", - "value": "FunctionPointers" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.FunctionPointers" - }, - { - "lang": "vb", - "value": "CSharp9.FunctionPointers" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "FunctionPointers", - "path": "src/CSharp9.cs", - "startLine": 27.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class FunctionPointers" - }, - { - "lang": "vb", - "value": "Public Class FunctionPointers" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp9.FunctionPointers.yml", - "_path": "api/CSharp9.FunctionPointers.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_FunctionPointers.md&value=---%0Auid%3A%20CSharp9.FunctionPointers%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L28", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_FunctionPointers", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json deleted file mode 100644 index ba727f72bbc..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json +++ /dev/null @@ -1,1240 +0,0 @@ -{ - "uid": "CSharp9.InitOnlySetters", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp9.InitOnlySetters.PressureInMillibars", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.InitOnlySetters", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "PressureInMillibars" - }, - { - "lang": "vb", - "value": "PressureInMillibars" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "InitOnlySetters.PressureInMillibars" - }, - { - "lang": "vb", - "value": "InitOnlySetters.PressureInMillibars" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.InitOnlySetters.PressureInMillibars" - }, - { - "lang": "vb", - "value": "CSharp9.InitOnlySetters.PressureInMillibars" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public decimal PressureInMillibars { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property PressureInMillibars As Decimal" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Decimal", - "name": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "PressureInMillibars", - "path": "src/CSharp9.cs", - "startLine": 18.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "overload": { - "uid": "CSharp9.InitOnlySetters.PressureInMillibars*", - "name": [ - { - "lang": "csharp", - "value": "PressureInMillibars" - }, - { - "lang": "vb", - "value": "PressureInMillibars" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "InitOnlySetters.PressureInMillibars" - }, - { - "lang": "vb", - "value": "InitOnlySetters.PressureInMillibars" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.InitOnlySetters.PressureInMillibars" - }, - { - "lang": "vb", - "value": "CSharp9.InitOnlySetters.PressureInMillibars" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp9_InitOnlySetters_PressureInMillibars_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_InitOnlySetters_PressureInMillibars.md&value=---%0Auid%3A%20CSharp9.InitOnlySetters.PressureInMillibars%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L19", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_InitOnlySetters_PressureInMillibars", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp9.InitOnlySetters.RecordedAt", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.InitOnlySetters", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "RecordedAt" - }, - { - "lang": "vb", - "value": "RecordedAt" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "InitOnlySetters.RecordedAt" - }, - { - "lang": "vb", - "value": "InitOnlySetters.RecordedAt" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.InitOnlySetters.RecordedAt" - }, - { - "lang": "vb", - "value": "CSharp9.InitOnlySetters.RecordedAt" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public DateTime RecordedAt { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property RecordedAt As Date" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.DateTime", - "name": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "RecordedAt", - "path": "src/CSharp9.cs", - "startLine": 16.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "overload": { - "uid": "CSharp9.InitOnlySetters.RecordedAt*", - "name": [ - { - "lang": "csharp", - "value": "RecordedAt" - }, - { - "lang": "vb", - "value": "RecordedAt" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "InitOnlySetters.RecordedAt" - }, - { - "lang": "vb", - "value": "InitOnlySetters.RecordedAt" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.InitOnlySetters.RecordedAt" - }, - { - "lang": "vb", - "value": "CSharp9.InitOnlySetters.RecordedAt" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp9_InitOnlySetters_RecordedAt_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_InitOnlySetters_RecordedAt.md&value=---%0Auid%3A%20CSharp9.InitOnlySetters.RecordedAt%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L17", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_InitOnlySetters_RecordedAt", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp9.InitOnlySetters.TemperatureInCelsius", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.InitOnlySetters", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "TemperatureInCelsius" - }, - { - "lang": "vb", - "value": "TemperatureInCelsius" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "InitOnlySetters.TemperatureInCelsius" - }, - { - "lang": "vb", - "value": "InitOnlySetters.TemperatureInCelsius" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.InitOnlySetters.TemperatureInCelsius" - }, - { - "lang": "vb", - "value": "CSharp9.InitOnlySetters.TemperatureInCelsius" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public decimal TemperatureInCelsius { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property TemperatureInCelsius As Decimal" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Decimal", - "name": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "decimal" - }, - { - "lang": "vb", - "value": "Decimal" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "TemperatureInCelsius", - "path": "src/CSharp9.cs", - "startLine": 17.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "overload": { - "uid": "CSharp9.InitOnlySetters.TemperatureInCelsius*", - "name": [ - { - "lang": "csharp", - "value": "TemperatureInCelsius" - }, - { - "lang": "vb", - "value": "TemperatureInCelsius" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "InitOnlySetters.TemperatureInCelsius" - }, - { - "lang": "vb", - "value": "InitOnlySetters.TemperatureInCelsius" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.InitOnlySetters.TemperatureInCelsius" - }, - { - "lang": "vb", - "value": "CSharp9.InitOnlySetters.TemperatureInCelsius" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp9_InitOnlySetters_TemperatureInCelsius_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_InitOnlySetters_TemperatureInCelsius.md&value=---%0Auid%3A%20CSharp9.InitOnlySetters.TemperatureInCelsius%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L18", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_InitOnlySetters_TemperatureInCelsius", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "InitOnlySetters" - }, - { - "lang": "vb", - "value": "InitOnlySetters" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "InitOnlySetters" - }, - { - "lang": "vb", - "value": "InitOnlySetters" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.InitOnlySetters" - }, - { - "lang": "vb", - "value": "CSharp9.InitOnlySetters" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "InitOnlySetters", - "path": "src/CSharp9.cs", - "startLine": 14.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class InitOnlySetters" - }, - { - "lang": "vb", - "value": "Public Class InitOnlySetters" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp9.InitOnlySetters.yml", - "_path": "api/CSharp9.InitOnlySetters.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_InitOnlySetters.md&value=---%0Auid%3A%20CSharp9.InitOnlySetters%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L15", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_InitOnlySetters", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json deleted file mode 100644 index c1455a23e00..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json +++ /dev/null @@ -1,970 +0,0 @@ -{ - "uid": "CSharp9.NativeSizedIntegers", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CSharp9.NativeSizedIntegers.X", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.NativeSizedIntegers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "X" - }, - { - "lang": "vb", - "value": "X" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NativeSizedIntegers.X" - }, - { - "lang": "vb", - "value": "NativeSizedIntegers.X" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.NativeSizedIntegers.X" - }, - { - "lang": "vb", - "value": "CSharp9.NativeSizedIntegers.X" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public nint X" - }, - { - "lang": "vb", - "value": "Public X As IntPtr" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.IntPtr", - "name": [ - { - "lang": "csharp", - "value": "nint" - }, - { - "lang": "vb", - "value": "IntPtr" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "nint" - }, - { - "lang": "vb", - "value": "IntPtr" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "nint" - }, - { - "lang": "vb", - "value": "System.IntPtr" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "X", - "path": "src/CSharp9.cs", - "startLine": 23.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_NativeSizedIntegers_X.md&value=---%0Auid%3A%20CSharp9.NativeSizedIntegers.X%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L24", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_NativeSizedIntegers_X", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp9.NativeSizedIntegers.Y", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.NativeSizedIntegers", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Y" - }, - { - "lang": "vb", - "value": "Y" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NativeSizedIntegers.Y" - }, - { - "lang": "vb", - "value": "NativeSizedIntegers.Y" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.NativeSizedIntegers.Y" - }, - { - "lang": "vb", - "value": "CSharp9.NativeSizedIntegers.Y" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public nuint Y" - }, - { - "lang": "vb", - "value": "Public Y As UIntPtr" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.UIntPtr", - "name": [ - { - "lang": "csharp", - "value": "nuint" - }, - { - "lang": "vb", - "value": "UIntPtr" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "nuint" - }, - { - "lang": "vb", - "value": "UIntPtr" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "nuint" - }, - { - "lang": "vb", - "value": "System.UIntPtr" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Y", - "path": "src/CSharp9.cs", - "startLine": 24.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "level": 0.0, - "type": "field", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_NativeSizedIntegers_Y.md&value=---%0Auid%3A%20CSharp9.NativeSizedIntegers.Y%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L25", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_NativeSizedIntegers_Y", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "NativeSizedIntegers" - }, - { - "lang": "vb", - "value": "NativeSizedIntegers" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NativeSizedIntegers" - }, - { - "lang": "vb", - "value": "NativeSizedIntegers" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.NativeSizedIntegers" - }, - { - "lang": "vb", - "value": "CSharp9.NativeSizedIntegers" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "NativeSizedIntegers", - "path": "src/CSharp9.cs", - "startLine": 21.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class NativeSizedIntegers" - }, - { - "lang": "vb", - "value": "Public Class NativeSizedIntegers" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp9.NativeSizedIntegers.yml", - "_path": "api/CSharp9.NativeSizedIntegers.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_NativeSizedIntegers.md&value=---%0Auid%3A%20CSharp9.NativeSizedIntegers%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L22", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_NativeSizedIntegers", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json deleted file mode 100644 index 370c50f219a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json +++ /dev/null @@ -1,1357 +0,0 @@ -{ - "uid": "CSharp9.RecordTypes.Person", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CSharp9.RecordTypes.Person.#ctor(System.String,System.String)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.RecordTypes.Person", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Person(string, string)" - }, - { - "lang": "vb", - "value": "New(String, String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person.Person(string, string)" - }, - { - "lang": "vb", - "value": "RecordTypes.Person.New(String, String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person.Person(string, string)" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person.New(String, String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Person(string FirstName, string LastName)" - }, - { - "lang": "vb", - "value": "Public Sub New(FirstName As String, LastName As String)" - } - ], - "parameters": [ - { - "id": "FirstName", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "LastName", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "src/CSharp9.cs", - "startLine": 9.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "overload": { - "uid": "CSharp9.RecordTypes.Person.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Person" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person.Person" - }, - { - "lang": "vb", - "value": "RecordTypes.Person.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person.Person" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp9_RecordTypes_Person__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_RecordTypes_Person__ctor_System_String_System_String_.md&value=---%0Auid%3A%20CSharp9.RecordTypes.Person.%23ctor(System.String%2CSystem.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L10", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes_Person__ctor_System_String_System_String_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp9.RecordTypes.Person.FirstName", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.RecordTypes.Person", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "FirstName" - }, - { - "lang": "vb", - "value": "FirstName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person.FirstName" - }, - { - "lang": "vb", - "value": "RecordTypes.Person.FirstName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person.FirstName" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person.FirstName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string FirstName { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property FirstName As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "FirstName", - "path": "src/CSharp9.cs", - "startLine": 9.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "overload": { - "uid": "CSharp9.RecordTypes.Person.FirstName*", - "name": [ - { - "lang": "csharp", - "value": "FirstName" - }, - { - "lang": "vb", - "value": "FirstName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person.FirstName" - }, - { - "lang": "vb", - "value": "RecordTypes.Person.FirstName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person.FirstName" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person.FirstName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp9_RecordTypes_Person_FirstName_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_RecordTypes_Person_FirstName.md&value=---%0Auid%3A%20CSharp9.RecordTypes.Person.FirstName%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L10", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes_Person_FirstName", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp9.RecordTypes.Person.LastName", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.RecordTypes.Person", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "LastName" - }, - { - "lang": "vb", - "value": "LastName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person.LastName" - }, - { - "lang": "vb", - "value": "RecordTypes.Person.LastName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person.LastName" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person.LastName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string LastName { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property LastName As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "LastName", - "path": "src/CSharp9.cs", - "startLine": 9.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "overload": { - "uid": "CSharp9.RecordTypes.Person.LastName*", - "name": [ - { - "lang": "csharp", - "value": "LastName" - }, - { - "lang": "vb", - "value": "LastName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person.LastName" - }, - { - "lang": "vb", - "value": "RecordTypes.Person.LastName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person.LastName" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person.LastName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp9_RecordTypes_Person_LastName_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_RecordTypes_Person_LastName.md&value=---%0Auid%3A%20CSharp9.RecordTypes.Person.LastName%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L10", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes_Person_LastName", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "RecordTypes.Person" - }, - { - "lang": "vb", - "value": "RecordTypes.Person" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person" - }, - { - "lang": "vb", - "value": "RecordTypes.Person" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Person", - "path": "src/CSharp9.cs", - "startLine": 9.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public record RecordTypes.Person : IEquatable" - }, - { - "lang": "vb", - "value": "Public Class RecordTypes.Person Implements IEquatable(Of RecordTypes.Person)" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "derivedClasses": [ - { - "isEii": false, - "isExtensionMethod": false, - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 2.0 - } - ], - "level": 1.0, - "implements": [ - { - "uid": "System.IEquatable{CSharp9.RecordTypes.Person}", - "definition": "System.IEquatable`1", - "name": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordTypes.Person)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordTypes.Person)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.IEquatable" - }, - { - "lang": "vb", - "value": "System.IEquatable(Of CSharp9.RecordTypes.Person)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IEquatable<RecordTypes.Person>" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordTypes.Person)" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp9.RecordTypes.Person.yml", - "_path": "api/CSharp9.RecordTypes.Person.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_RecordTypes_Person.md&value=---%0Auid%3A%20CSharp9.RecordTypes.Person%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L10", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes_Person", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json deleted file mode 100644 index 679c13743dd..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json +++ /dev/null @@ -1,1400 +0,0 @@ -{ - "uid": "CSharp9.RecordTypes.Teacher", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CSharp9.RecordTypes.Teacher.#ctor(System.String,System.String,System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.RecordTypes.Teacher", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Teacher(string, string, int)" - }, - { - "lang": "vb", - "value": "New(String, String, Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Teacher.Teacher(string, string, int)" - }, - { - "lang": "vb", - "value": "RecordTypes.Teacher.New(String, String, Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Teacher.Teacher(string, string, int)" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Teacher.New(String, String, Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Teacher(string FirstName, string LastName, int Grade)" - }, - { - "lang": "vb", - "value": "Public Sub New(FirstName As String, LastName As String, Grade As Integer)" - } - ], - "parameters": [ - { - "id": "FirstName", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "LastName", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "Grade", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "src/CSharp9.cs", - "startLine": 11.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "overload": { - "uid": "CSharp9.RecordTypes.Teacher.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Teacher" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Teacher.Teacher" - }, - { - "lang": "vb", - "value": "RecordTypes.Teacher.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Teacher.Teacher" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Teacher.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp9_RecordTypes_Teacher__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_RecordTypes_Teacher__ctor_System_String_System_String_System_Int32_.md&value=---%0Auid%3A%20CSharp9.RecordTypes.Teacher.%23ctor(System.String%2CSystem.String%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L12", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes_Teacher__ctor_System_String_System_String_System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CSharp9.RecordTypes.Teacher.Grade", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9.RecordTypes.Teacher", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Grade" - }, - { - "lang": "vb", - "value": "Grade" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Teacher.Grade" - }, - { - "lang": "vb", - "value": "RecordTypes.Teacher.Grade" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Teacher.Grade" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Teacher.Grade" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public int Grade { get; init; }" - }, - { - "lang": "vb", - "value": "Public Property Grade As Integer" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Grade", - "path": "src/CSharp9.cs", - "startLine": 11.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": "CSharp9", - "overload": { - "uid": "CSharp9.RecordTypes.Teacher.Grade*", - "name": [ - { - "lang": "csharp", - "value": "Grade" - }, - { - "lang": "vb", - "value": "Grade" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Teacher.Grade" - }, - { - "lang": "vb", - "value": "RecordTypes.Teacher.Grade" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Teacher.Grade" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Teacher.Grade" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CSharp9_RecordTypes_Teacher_Grade_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_RecordTypes_Teacher_Grade.md&value=---%0Auid%3A%20CSharp9.RecordTypes.Teacher.Grade%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L12", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes_Teacher_Grade", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "RecordTypes.Teacher" - }, - { - "lang": "vb", - "value": "RecordTypes.Teacher" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Teacher" - }, - { - "lang": "vb", - "value": "RecordTypes.Teacher" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Teacher" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Teacher" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Teacher", - "path": "src/CSharp9.cs", - "startLine": 11.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public record RecordTypes.Teacher : RecordTypes.Person, IEquatable, IEquatable" - }, - { - "lang": "vb", - "value": "Public Class RecordTypes.Teacher Inherits RecordTypes.Person Implements IEquatable(Of RecordTypes.Person), IEquatable(Of RecordTypes.Teacher)" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - }, - { - "uid": "CSharp9.RecordTypes.Person", - "isEii": false, - "isExtensionMethod": false, - "parent": "CSharp9", - "href": "CSharp9.RecordTypes.html", - "name": [ - { - "lang": "csharp", - "value": "RecordTypes.Person" - }, - { - "lang": "vb", - "value": "RecordTypes.Person" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person" - }, - { - "lang": "vb", - "value": "RecordTypes.Person" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "RecordTypes.Person" - }, - { - "lang": "vb", - "value": "RecordTypes.Person" - } - ], - "level": 0.0, - "index": 1.0 - } - ], - "level": 2.0, - "implements": [ - { - "uid": "System.IEquatable{CSharp9.RecordTypes.Person}", - "definition": "System.IEquatable`1", - "name": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordTypes.Person)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordTypes.Person)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.IEquatable" - }, - { - "lang": "vb", - "value": "System.IEquatable(Of CSharp9.RecordTypes.Person)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IEquatable<RecordTypes.Person>" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordTypes.Person)" - } - ] - }, - { - "uid": "System.IEquatable{CSharp9.RecordTypes.Teacher}", - "definition": "System.IEquatable`1", - "name": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordTypes.Teacher)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IEquatable" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordTypes.Teacher)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.IEquatable" - }, - { - "lang": "vb", - "value": "System.IEquatable(Of CSharp9.RecordTypes.Teacher)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IEquatable<RecordTypes.Teacher>" - }, - { - "lang": "vb", - "value": "IEquatable(Of RecordTypes.Teacher)" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "CSharp9.RecordTypes.Person.FirstName", - "isExtensionMethod": false, - "parent": "CSharp9.RecordTypes.Person", - "href": "CSharp9.RecordTypes.Person.html#CSharp9_RecordTypes_Person_FirstName", - "name": [ - { - "lang": "csharp", - "value": "FirstName" - }, - { - "lang": "vb", - "value": "FirstName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person.FirstName" - }, - { - "lang": "vb", - "value": "RecordTypes.Person.FirstName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person.FirstName" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person.FirstName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": null, - "type": "property", - "platform": null, - "isEii": false - }, - { - "uid": "CSharp9.RecordTypes.Person.LastName", - "isExtensionMethod": false, - "parent": "CSharp9.RecordTypes.Person", - "href": "CSharp9.RecordTypes.Person.html#CSharp9_RecordTypes_Person_LastName", - "name": [ - { - "lang": "csharp", - "value": "LastName" - }, - { - "lang": "vb", - "value": "LastName" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person.LastName" - }, - { - "lang": "vb", - "value": "RecordTypes.Person.LastName" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person.LastName" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person.LastName" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": null, - "type": "property", - "platform": null, - "isEii": false - }, - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp9.RecordTypes.Teacher.yml", - "_path": "api/CSharp9.RecordTypes.Teacher.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_RecordTypes_Teacher.md&value=---%0Auid%3A%20CSharp9.RecordTypes.Teacher%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L12", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes_Teacher", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json deleted file mode 100644 index b145ff3ca8f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json +++ /dev/null @@ -1,692 +0,0 @@ -{ - "uid": "CSharp9.RecordTypes", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "RecordTypes" - }, - { - "lang": "vb", - "value": "RecordTypes" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes" - }, - { - "lang": "vb", - "value": "RecordTypes" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/csharp/src/CSharp9.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "RecordTypes", - "path": "src/CSharp9.cs", - "startLine": 7.0, - "endLine": 0.0 - }, - "assemblies": [ - "CSharp" - ], - "namespace": { - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "href": "CSharp9.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class RecordTypes" - }, - { - "lang": "vb", - "value": "Public Class RecordTypes" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp9.RecordTypes.yml", - "_path": "api/CSharp9.RecordTypes.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CSharp9_RecordTypes.md&value=---%0Auid%3A%20CSharp9.RecordTypes%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/csharp/src/CSharp9.cs/#L8", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.html.view.verified.json deleted file mode 100644 index ca55d6f8aa6..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.html.view.verified.json +++ /dev/null @@ -1,559 +0,0 @@ -{ - "uid": "CSharp9", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "CSharp9.FunctionPointers", - "isExtensionMethod": false, - "href": "CSharp9.FunctionPointers.html", - "name": [ - { - "lang": "csharp", - "value": "FunctionPointers" - }, - { - "lang": "vb", - "value": "FunctionPointers" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "FunctionPointers" - }, - { - "lang": "vb", - "value": "FunctionPointers" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.FunctionPointers" - }, - { - "lang": "vb", - "value": "CSharp9.FunctionPointers" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_FunctionPointers", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp9.InitOnlySetters", - "isExtensionMethod": false, - "href": "CSharp9.InitOnlySetters.html", - "name": [ - { - "lang": "csharp", - "value": "InitOnlySetters" - }, - { - "lang": "vb", - "value": "InitOnlySetters" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "InitOnlySetters" - }, - { - "lang": "vb", - "value": "InitOnlySetters" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.InitOnlySetters" - }, - { - "lang": "vb", - "value": "CSharp9.InitOnlySetters" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_InitOnlySetters", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp9.NativeSizedIntegers", - "isExtensionMethod": false, - "href": "CSharp9.NativeSizedIntegers.html", - "name": [ - { - "lang": "csharp", - "value": "NativeSizedIntegers" - }, - { - "lang": "vb", - "value": "NativeSizedIntegers" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NativeSizedIntegers" - }, - { - "lang": "vb", - "value": "NativeSizedIntegers" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.NativeSizedIntegers" - }, - { - "lang": "vb", - "value": "CSharp9.NativeSizedIntegers" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_NativeSizedIntegers", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp9.RecordTypes", - "isExtensionMethod": false, - "href": "CSharp9.RecordTypes.html", - "name": [ - { - "lang": "csharp", - "value": "RecordTypes" - }, - { - "lang": "vb", - "value": "RecordTypes" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes" - }, - { - "lang": "vb", - "value": "RecordTypes" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp9.RecordTypes.Person", - "isExtensionMethod": false, - "parent": "CSharp9", - "href": "CSharp9.RecordTypes.html", - "name": [ - { - "lang": "csharp", - "value": "RecordTypes.Person" - }, - { - "lang": "vb", - "value": "RecordTypes.Person" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Person" - }, - { - "lang": "vb", - "value": "RecordTypes.Person" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Person" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Person" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "RecordTypes.Person" - }, - { - "lang": "vb", - "value": "RecordTypes.Person" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes_Person", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CSharp9.RecordTypes.Teacher", - "isExtensionMethod": false, - "href": "CSharp9.RecordTypes.html", - "name": [ - { - "lang": "csharp", - "value": "RecordTypes.Teacher" - }, - { - "lang": "vb", - "value": "RecordTypes.Teacher" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "RecordTypes.Teacher" - }, - { - "lang": "vb", - "value": "RecordTypes.Teacher" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9.RecordTypes.Teacher" - }, - { - "lang": "vb", - "value": "CSharp9.RecordTypes.Teacher" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "RecordTypes.Teacher" - }, - { - "lang": "vb", - "value": "RecordTypes.Teacher" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9_RecordTypes_Teacher", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CSharp9" - }, - { - "lang": "vb", - "value": "CSharp9" - } - ], - "type": "namespace", - "assemblies": [ - "CSharp" - ], - "level": 0.0, - "_systemKeys": [ - "uid", - "isEii", - "isExtensionMethod", - "parent", - "children", - "href", - "langs", - "name", - "nameWithType", - "fullName", - "type", - "source", - "documentation", - "assemblies", - "namespace", - "summary", - "remarks", - "example", - "syntax", - "overridden", - "overload", - "exceptions", - "seealso", - "see", - "inheritance", - "derivedClasses", - "level", - "implements", - "inheritedMembers", - "extensionMethods", - "conceptual", - "platform", - "attributes", - "additionalNotes" - ], - "_key": "api/CSharp9.yml", - "_path": "api/CSharp9.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CSharp9", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.html.view.verified.json deleted file mode 100644 index 56f0d8ac2e5..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.html.view.verified.json +++ /dev/null @@ -1,482 +0,0 @@ -{ - "items": [ - { - "name": "CSharp10", - "href": "CSharp10.html", - "topicHref": "CSharp10.html", - "topicUid": "CSharp10", - "items": [ - { - "name": "ConstantInterpolatedStrings", - "href": "CSharp10.ConstantInterpolatedStrings.html", - "topicHref": "CSharp10.ConstantInterpolatedStrings.html", - "topicUid": "CSharp10.ConstantInterpolatedStrings", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Issue7737", - "href": "CSharp10.Issue7737.html", - "topicHref": "CSharp10.Issue7737.html", - "topicUid": "CSharp10.Issue7737", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "ParameterlessStructConstructors", - "href": "CSharp10.ParameterlessStructConstructors.html", - "topicHref": "CSharp10.ParameterlessStructConstructors.html", - "topicUid": "CSharp10.ParameterlessStructConstructors", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "ReadOnlyRecordStruct", - "href": "CSharp10.ReadOnlyRecordStruct.html", - "topicHref": "CSharp10.ReadOnlyRecordStruct.html", - "topicUid": "CSharp10.ReadOnlyRecordStruct", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "RecordClass", - "href": "CSharp10.RecordClass.html", - "topicHref": "CSharp10.RecordClass.html", - "topicUid": "CSharp10.RecordClass", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "RecordStruct", - "href": "CSharp10.RecordStruct.html", - "topicHref": "CSharp10.RecordStruct.html", - "topicUid": "CSharp10.RecordStruct", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "CSharp11", - "href": "CSharp11.html", - "topicHref": "CSharp11.html", - "topicUid": "CSharp11", - "items": [ - { - "name": "CheckedUserDefinedOperators", - "href": "CSharp11.CheckedUserDefinedOperators-1.html", - "topicHref": "CSharp11.CheckedUserDefinedOperators-1.html", - "topicUid": "CSharp11.CheckedUserDefinedOperators`1", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "RequiredModifier", - "href": "CSharp11.RequiredModifier.html", - "topicHref": "CSharp11.RequiredModifier.html", - "topicUid": "CSharp11.RequiredModifier", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "ScopedModifier", - "href": "CSharp11.ScopedModifier.html", - "topicHref": "CSharp11.ScopedModifier.html", - "topicUid": "CSharp11.ScopedModifier", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "StaticAbstractMembersInInterfaces", - "href": "CSharp11.StaticAbstractMembersInInterfaces.html", - "topicHref": "CSharp11.StaticAbstractMembersInInterfaces.html", - "topicUid": "CSharp11.StaticAbstractMembersInInterfaces", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "StaticAbstractMembersInInterfaces.IGetNext", - "href": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html", - "topicHref": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html", - "topicUid": "CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "StaticAbstractMembersInInterfaces.RepeatSequence", - "href": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html", - "topicHref": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html", - "topicUid": "CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "CSharp12", - "href": "CSharp12.html", - "topicHref": "CSharp12.html", - "topicUid": "CSharp12", - "items": [ - { - "name": "CollectionExpressions", - "href": "CSharp12.CollectionExpressions.html", - "topicHref": "CSharp12.CollectionExpressions.html", - "topicUid": "CSharp12.CollectionExpressions", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "DefaultLambdaParameters", - "href": "CSharp12.DefaultLambdaParameters.html", - "topicHref": "CSharp12.DefaultLambdaParameters.html", - "topicUid": "CSharp12.DefaultLambdaParameters", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "InlineArrays", - "href": "CSharp12.InlineArrays.html", - "topicHref": "CSharp12.InlineArrays.html", - "topicUid": "CSharp12.InlineArrays", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "PrimaryConstructors", - "href": "CSharp12.PrimaryConstructors.html", - "topicHref": "CSharp12.PrimaryConstructors.html", - "topicUid": "CSharp12.PrimaryConstructors", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "PrimaryConstructors.BankAccount", - "href": "CSharp12.PrimaryConstructors.BankAccount.html", - "topicHref": "CSharp12.PrimaryConstructors.BankAccount.html", - "topicUid": "CSharp12.PrimaryConstructors.BankAccount", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "PrimaryConstructors.CheckAccount", - "href": "CSharp12.PrimaryConstructors.CheckAccount.html", - "topicHref": "CSharp12.PrimaryConstructors.CheckAccount.html", - "topicUid": "CSharp12.PrimaryConstructors.CheckAccount", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "PrimaryConstructors.Distance", - "href": "CSharp12.PrimaryConstructors.Distance.html", - "topicHref": "CSharp12.PrimaryConstructors.Distance.html", - "topicUid": "CSharp12.PrimaryConstructors.Distance", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "RefReadOnlyParameters", - "href": "CSharp12.RefReadOnlyParameters.html", - "topicHref": "CSharp12.RefReadOnlyParameters.html", - "topicUid": "CSharp12.RefReadOnlyParameters", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "CSharp8", - "href": "CSharp8.html", - "topicHref": "CSharp8.html", - "topicUid": "CSharp8", - "items": [ - { - "name": "DefaultInterfaceMembers", - "href": "CSharp8.DefaultInterfaceMembers.html", - "topicHref": "CSharp8.DefaultInterfaceMembers.html", - "topicUid": "CSharp8.DefaultInterfaceMembers", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "DefaultInterfaceMembers.IA", - "href": "CSharp8.DefaultInterfaceMembers.IA.html", - "topicHref": "CSharp8.DefaultInterfaceMembers.IA.html", - "topicUid": "CSharp8.DefaultInterfaceMembers.IA", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "DefaultInterfaceMembers.Nested", - "href": "CSharp8.DefaultInterfaceMembers.Nested.html", - "topicHref": "CSharp8.DefaultInterfaceMembers.Nested.html", - "topicUid": "CSharp8.DefaultInterfaceMembers.Nested", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "DisposableRefStructs", - "href": "CSharp8.DisposableRefStructs.html", - "topicHref": "CSharp8.DisposableRefStructs.html", - "topicUid": "CSharp8.DisposableRefStructs", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Issue4007", - "href": "CSharp8.Issue4007.html", - "topicHref": "CSharp8.Issue4007.html", - "topicUid": "CSharp8.Issue4007", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Misc", - "href": "CSharp8.Misc.html", - "topicHref": "CSharp8.Misc.html", - "topicUid": "CSharp8.Misc", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "NullableReferenceTypes", - "href": "CSharp8.NullableReferenceTypes.html", - "topicHref": "CSharp8.NullableReferenceTypes.html", - "topicUid": "CSharp8.NullableReferenceTypes", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "ReadOnlyMembers", - "href": "CSharp8.ReadOnlyMembers.html", - "topicHref": "CSharp8.ReadOnlyMembers.html", - "topicUid": "CSharp8.ReadOnlyMembers", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "CSharp9", - "href": "CSharp9.html", - "topicHref": "CSharp9.html", - "topicUid": "CSharp9", - "items": [ - { - "name": "FunctionPointers", - "href": "CSharp9.FunctionPointers.html", - "topicHref": "CSharp9.FunctionPointers.html", - "topicUid": "CSharp9.FunctionPointers", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "InitOnlySetters", - "href": "CSharp9.InitOnlySetters.html", - "topicHref": "CSharp9.InitOnlySetters.html", - "topicUid": "CSharp9.InitOnlySetters", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "NativeSizedIntegers", - "href": "CSharp9.NativeSizedIntegers.html", - "topicHref": "CSharp9.NativeSizedIntegers.html", - "topicUid": "CSharp9.NativeSizedIntegers", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "RecordTypes", - "href": "CSharp9.RecordTypes.html", - "topicHref": "CSharp9.RecordTypes.html", - "topicUid": "CSharp9.RecordTypes", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "RecordTypes.Person", - "href": "CSharp9.RecordTypes.Person.html", - "topicHref": "CSharp9.RecordTypes.Person.html", - "topicUid": "CSharp9.RecordTypes.Person", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "RecordTypes.Teacher", - "href": "CSharp9.RecordTypes.Teacher.html", - "topicHref": "CSharp9.RecordTypes.Teacher.html", - "topicUid": "CSharp9.RecordTypes.Teacher", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - } - ], - "memberLayout": "SamePage", - "_key": "api/toc.yml", - "_path": "api/toc.html", - "_rel": "../", - "_tocKey": "~/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "__global": { - "namespacesInSubtitle": "Namespaces", - "classesInSubtitle": "Classes", - "structsInSubtitle": "Structs", - "interfacesInSubtitle": "Interfaces", - "enumsInSubtitle": "Enums", - "delegatesInSubtitle": "Delegates", - "constructorsInSubtitle": "Constructors", - "fieldsInSubtitle": "Fields", - "propertiesInSubtitle": "Properties", - "methodsInSubtitle": "Methods", - "eventsInSubtitle": "Events", - "operatorsInSubtitle": "Operators", - "eiisInSubtitle": "Explicit Interface Implementations", - "functionsInSubtitle": "Functions", - "variablesInSubtitle": "Variables", - "typeAliasesInSubtitle": "Type Aliases", - "membersInSubtitle": "Members", - "improveThisDoc": "Edit this page", - "viewSource": "View Source", - "inheritance": "Inheritance", - "derived": "Derived", - "inheritedMembers": "Inherited Members", - "package": "Package", - "namespace": "Namespace", - "assembly": "Assembly", - "syntax": "Syntax", - "overrides": "Overrides", - "implements": "Implements", - "remarks": "Remarks", - "examples": "Examples", - "seealso": "See Also", - "declaration": "Declaration", - "parameters": "Parameters", - "typeParameters": "Type Parameters", - "type": "Type", - "name": "Name", - "description": "Description", - "returns": "Returns", - "fieldValue": "Field Value", - "propertyValue": "Property Value", - "eventType": "Event Type", - "variableValue": "Variable Value", - "typeAliasType": "Type Alias Type", - "exceptions": "Exceptions", - "condition": "Condition", - "extensionMethods": "Extension Methods", - "note": "Note", - "warning": "Warning", - "tip": "Tip", - "important": "Important", - "caution": "Caution", - "tocToggleButton": "Show / Hide Table of Contents", - "tocFilter": "Filter by title", - "search": "Search", - "searchResults": "Search Results for", - "searchResultsCount": "{count} results for \"{query}\"", - "searchNoResults": "No results for \"{query}\"", - "pageFirst": "First", - "pagePrev": "Previous", - "pageNext": "Next", - "pageLast": "Last", - "inThisArticle": "In this article", - "nextArticle": "Next", - "prevArticle": "Previous", - "backToTop": "Back to top", - "themeLight": "Light", - "themeDark": "Dark", - "themeAuto": "Auto", - "changeTheme": "Change theme", - "copy": "Copy", - "downloadPdf": "Download PDF", - "_shared": {} - }, - "topicHref": null, - "tocHref": null, - "name": null, - "level": 1.0, - "leaf": false, - "title": "Table of Content", - "_disableToc": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.json.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.json.view.verified.json deleted file mode 100644 index 17c295d2741..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.json.view.verified.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "content": "{\"items\":[{\"name\":\"CSharp10\",\"href\":\"CSharp10.html\",\"topicHref\":\"CSharp10.html\",\"topicUid\":\"CSharp10\",\"items\":[{\"name\":\"ConstantInterpolatedStrings\",\"href\":\"CSharp10.ConstantInterpolatedStrings.html\",\"topicHref\":\"CSharp10.ConstantInterpolatedStrings.html\",\"topicUid\":\"CSharp10.ConstantInterpolatedStrings\"},{\"name\":\"Issue7737\",\"href\":\"CSharp10.Issue7737.html\",\"topicHref\":\"CSharp10.Issue7737.html\",\"topicUid\":\"CSharp10.Issue7737\"},{\"name\":\"ParameterlessStructConstructors\",\"href\":\"CSharp10.ParameterlessStructConstructors.html\",\"topicHref\":\"CSharp10.ParameterlessStructConstructors.html\",\"topicUid\":\"CSharp10.ParameterlessStructConstructors\"},{\"name\":\"ReadOnlyRecordStruct\",\"href\":\"CSharp10.ReadOnlyRecordStruct.html\",\"topicHref\":\"CSharp10.ReadOnlyRecordStruct.html\",\"topicUid\":\"CSharp10.ReadOnlyRecordStruct\"},{\"name\":\"RecordClass\",\"href\":\"CSharp10.RecordClass.html\",\"topicHref\":\"CSharp10.RecordClass.html\",\"topicUid\":\"CSharp10.RecordClass\"},{\"name\":\"RecordStruct\",\"href\":\"CSharp10.RecordStruct.html\",\"topicHref\":\"CSharp10.RecordStruct.html\",\"topicUid\":\"CSharp10.RecordStruct\"}]},{\"name\":\"CSharp11\",\"href\":\"CSharp11.html\",\"topicHref\":\"CSharp11.html\",\"topicUid\":\"CSharp11\",\"items\":[{\"name\":\"CheckedUserDefinedOperators\",\"href\":\"CSharp11.CheckedUserDefinedOperators-1.html\",\"topicHref\":\"CSharp11.CheckedUserDefinedOperators-1.html\",\"topicUid\":\"CSharp11.CheckedUserDefinedOperators`1\"},{\"name\":\"RequiredModifier\",\"href\":\"CSharp11.RequiredModifier.html\",\"topicHref\":\"CSharp11.RequiredModifier.html\",\"topicUid\":\"CSharp11.RequiredModifier\"},{\"name\":\"ScopedModifier\",\"href\":\"CSharp11.ScopedModifier.html\",\"topicHref\":\"CSharp11.ScopedModifier.html\",\"topicUid\":\"CSharp11.ScopedModifier\"},{\"name\":\"StaticAbstractMembersInInterfaces\",\"href\":\"CSharp11.StaticAbstractMembersInInterfaces.html\",\"topicHref\":\"CSharp11.StaticAbstractMembersInInterfaces.html\",\"topicUid\":\"CSharp11.StaticAbstractMembersInInterfaces\"},{\"name\":\"StaticAbstractMembersInInterfaces.IGetNext\",\"href\":\"CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html\",\"topicHref\":\"CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html\",\"topicUid\":\"CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1\"},{\"name\":\"StaticAbstractMembersInInterfaces.RepeatSequence\",\"href\":\"CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html\",\"topicHref\":\"CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html\",\"topicUid\":\"CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence\"}]},{\"name\":\"CSharp12\",\"href\":\"CSharp12.html\",\"topicHref\":\"CSharp12.html\",\"topicUid\":\"CSharp12\",\"items\":[{\"name\":\"CollectionExpressions\",\"href\":\"CSharp12.CollectionExpressions.html\",\"topicHref\":\"CSharp12.CollectionExpressions.html\",\"topicUid\":\"CSharp12.CollectionExpressions\"},{\"name\":\"DefaultLambdaParameters\",\"href\":\"CSharp12.DefaultLambdaParameters.html\",\"topicHref\":\"CSharp12.DefaultLambdaParameters.html\",\"topicUid\":\"CSharp12.DefaultLambdaParameters\"},{\"name\":\"InlineArrays\",\"href\":\"CSharp12.InlineArrays.html\",\"topicHref\":\"CSharp12.InlineArrays.html\",\"topicUid\":\"CSharp12.InlineArrays\"},{\"name\":\"PrimaryConstructors\",\"href\":\"CSharp12.PrimaryConstructors.html\",\"topicHref\":\"CSharp12.PrimaryConstructors.html\",\"topicUid\":\"CSharp12.PrimaryConstructors\"},{\"name\":\"PrimaryConstructors.BankAccount\",\"href\":\"CSharp12.PrimaryConstructors.BankAccount.html\",\"topicHref\":\"CSharp12.PrimaryConstructors.BankAccount.html\",\"topicUid\":\"CSharp12.PrimaryConstructors.BankAccount\"},{\"name\":\"PrimaryConstructors.CheckAccount\",\"href\":\"CSharp12.PrimaryConstructors.CheckAccount.html\",\"topicHref\":\"CSharp12.PrimaryConstructors.CheckAccount.html\",\"topicUid\":\"CSharp12.PrimaryConstructors.CheckAccount\"},{\"name\":\"PrimaryConstructors.Distance\",\"href\":\"CSharp12.PrimaryConstructors.Distance.html\",\"topicHref\":\"CSharp12.PrimaryConstructors.Distance.html\",\"topicUid\":\"CSharp12.PrimaryConstructors.Distance\"},{\"name\":\"RefReadOnlyParameters\",\"href\":\"CSharp12.RefReadOnlyParameters.html\",\"topicHref\":\"CSharp12.RefReadOnlyParameters.html\",\"topicUid\":\"CSharp12.RefReadOnlyParameters\"}]},{\"name\":\"CSharp8\",\"href\":\"CSharp8.html\",\"topicHref\":\"CSharp8.html\",\"topicUid\":\"CSharp8\",\"items\":[{\"name\":\"DefaultInterfaceMembers\",\"href\":\"CSharp8.DefaultInterfaceMembers.html\",\"topicHref\":\"CSharp8.DefaultInterfaceMembers.html\",\"topicUid\":\"CSharp8.DefaultInterfaceMembers\"},{\"name\":\"DefaultInterfaceMembers.IA\",\"href\":\"CSharp8.DefaultInterfaceMembers.IA.html\",\"topicHref\":\"CSharp8.DefaultInterfaceMembers.IA.html\",\"topicUid\":\"CSharp8.DefaultInterfaceMembers.IA\"},{\"name\":\"DefaultInterfaceMembers.Nested\",\"href\":\"CSharp8.DefaultInterfaceMembers.Nested.html\",\"topicHref\":\"CSharp8.DefaultInterfaceMembers.Nested.html\",\"topicUid\":\"CSharp8.DefaultInterfaceMembers.Nested\"},{\"name\":\"DisposableRefStructs\",\"href\":\"CSharp8.DisposableRefStructs.html\",\"topicHref\":\"CSharp8.DisposableRefStructs.html\",\"topicUid\":\"CSharp8.DisposableRefStructs\"},{\"name\":\"Issue4007\",\"href\":\"CSharp8.Issue4007.html\",\"topicHref\":\"CSharp8.Issue4007.html\",\"topicUid\":\"CSharp8.Issue4007\"},{\"name\":\"Misc\",\"href\":\"CSharp8.Misc.html\",\"topicHref\":\"CSharp8.Misc.html\",\"topicUid\":\"CSharp8.Misc\"},{\"name\":\"NullableReferenceTypes\",\"href\":\"CSharp8.NullableReferenceTypes.html\",\"topicHref\":\"CSharp8.NullableReferenceTypes.html\",\"topicUid\":\"CSharp8.NullableReferenceTypes\"},{\"name\":\"ReadOnlyMembers\",\"href\":\"CSharp8.ReadOnlyMembers.html\",\"topicHref\":\"CSharp8.ReadOnlyMembers.html\",\"topicUid\":\"CSharp8.ReadOnlyMembers\"}]},{\"name\":\"CSharp9\",\"href\":\"CSharp9.html\",\"topicHref\":\"CSharp9.html\",\"topicUid\":\"CSharp9\",\"items\":[{\"name\":\"FunctionPointers\",\"href\":\"CSharp9.FunctionPointers.html\",\"topicHref\":\"CSharp9.FunctionPointers.html\",\"topicUid\":\"CSharp9.FunctionPointers\"},{\"name\":\"InitOnlySetters\",\"href\":\"CSharp9.InitOnlySetters.html\",\"topicHref\":\"CSharp9.InitOnlySetters.html\",\"topicUid\":\"CSharp9.InitOnlySetters\"},{\"name\":\"NativeSizedIntegers\",\"href\":\"CSharp9.NativeSizedIntegers.html\",\"topicHref\":\"CSharp9.NativeSizedIntegers.html\",\"topicUid\":\"CSharp9.NativeSizedIntegers\"},{\"name\":\"RecordTypes\",\"href\":\"CSharp9.RecordTypes.html\",\"topicHref\":\"CSharp9.RecordTypes.html\",\"topicUid\":\"CSharp9.RecordTypes\"},{\"name\":\"RecordTypes.Person\",\"href\":\"CSharp9.RecordTypes.Person.html\",\"topicHref\":\"CSharp9.RecordTypes.Person.html\",\"topicUid\":\"CSharp9.RecordTypes.Person\"},{\"name\":\"RecordTypes.Teacher\",\"href\":\"CSharp9.RecordTypes.Teacher.html\",\"topicHref\":\"CSharp9.RecordTypes.Teacher.html\",\"topicUid\":\"CSharp9.RecordTypes.Teacher\"}]}],\"memberLayout\":\"SamePage\"}" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.verified.json deleted file mode 100644 index e902052df94..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.verified.json +++ /dev/null @@ -1,2 +0,0 @@ - -{"items":[{"name":"CSharp10","href":"CSharp10.html","topicHref":"CSharp10.html","topicUid":"CSharp10","items":[{"name":"ConstantInterpolatedStrings","href":"CSharp10.ConstantInterpolatedStrings.html","topicHref":"CSharp10.ConstantInterpolatedStrings.html","topicUid":"CSharp10.ConstantInterpolatedStrings"},{"name":"Issue7737","href":"CSharp10.Issue7737.html","topicHref":"CSharp10.Issue7737.html","topicUid":"CSharp10.Issue7737"},{"name":"ParameterlessStructConstructors","href":"CSharp10.ParameterlessStructConstructors.html","topicHref":"CSharp10.ParameterlessStructConstructors.html","topicUid":"CSharp10.ParameterlessStructConstructors"},{"name":"ReadOnlyRecordStruct","href":"CSharp10.ReadOnlyRecordStruct.html","topicHref":"CSharp10.ReadOnlyRecordStruct.html","topicUid":"CSharp10.ReadOnlyRecordStruct"},{"name":"RecordClass","href":"CSharp10.RecordClass.html","topicHref":"CSharp10.RecordClass.html","topicUid":"CSharp10.RecordClass"},{"name":"RecordStruct","href":"CSharp10.RecordStruct.html","topicHref":"CSharp10.RecordStruct.html","topicUid":"CSharp10.RecordStruct"}]},{"name":"CSharp11","href":"CSharp11.html","topicHref":"CSharp11.html","topicUid":"CSharp11","items":[{"name":"CheckedUserDefinedOperators","href":"CSharp11.CheckedUserDefinedOperators-1.html","topicHref":"CSharp11.CheckedUserDefinedOperators-1.html","topicUid":"CSharp11.CheckedUserDefinedOperators`1"},{"name":"RequiredModifier","href":"CSharp11.RequiredModifier.html","topicHref":"CSharp11.RequiredModifier.html","topicUid":"CSharp11.RequiredModifier"},{"name":"ScopedModifier","href":"CSharp11.ScopedModifier.html","topicHref":"CSharp11.ScopedModifier.html","topicUid":"CSharp11.ScopedModifier"},{"name":"StaticAbstractMembersInInterfaces","href":"CSharp11.StaticAbstractMembersInInterfaces.html","topicHref":"CSharp11.StaticAbstractMembersInInterfaces.html","topicUid":"CSharp11.StaticAbstractMembersInInterfaces"},{"name":"StaticAbstractMembersInInterfaces.IGetNext","href":"CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html","topicHref":"CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html","topicUid":"CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1"},{"name":"StaticAbstractMembersInInterfaces.RepeatSequence","href":"CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html","topicHref":"CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html","topicUid":"CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence"}]},{"name":"CSharp12","href":"CSharp12.html","topicHref":"CSharp12.html","topicUid":"CSharp12","items":[{"name":"CollectionExpressions","href":"CSharp12.CollectionExpressions.html","topicHref":"CSharp12.CollectionExpressions.html","topicUid":"CSharp12.CollectionExpressions"},{"name":"DefaultLambdaParameters","href":"CSharp12.DefaultLambdaParameters.html","topicHref":"CSharp12.DefaultLambdaParameters.html","topicUid":"CSharp12.DefaultLambdaParameters"},{"name":"InlineArrays","href":"CSharp12.InlineArrays.html","topicHref":"CSharp12.InlineArrays.html","topicUid":"CSharp12.InlineArrays"},{"name":"PrimaryConstructors","href":"CSharp12.PrimaryConstructors.html","topicHref":"CSharp12.PrimaryConstructors.html","topicUid":"CSharp12.PrimaryConstructors"},{"name":"PrimaryConstructors.BankAccount","href":"CSharp12.PrimaryConstructors.BankAccount.html","topicHref":"CSharp12.PrimaryConstructors.BankAccount.html","topicUid":"CSharp12.PrimaryConstructors.BankAccount"},{"name":"PrimaryConstructors.CheckAccount","href":"CSharp12.PrimaryConstructors.CheckAccount.html","topicHref":"CSharp12.PrimaryConstructors.CheckAccount.html","topicUid":"CSharp12.PrimaryConstructors.CheckAccount"},{"name":"PrimaryConstructors.Distance","href":"CSharp12.PrimaryConstructors.Distance.html","topicHref":"CSharp12.PrimaryConstructors.Distance.html","topicUid":"CSharp12.PrimaryConstructors.Distance"},{"name":"RefReadOnlyParameters","href":"CSharp12.RefReadOnlyParameters.html","topicHref":"CSharp12.RefReadOnlyParameters.html","topicUid":"CSharp12.RefReadOnlyParameters"}]},{"name":"CSharp8","href":"CSharp8.html","topicHref":"CSharp8.html","topicUid":"CSharp8","items":[{"name":"DefaultInterfaceMembers","href":"CSharp8.DefaultInterfaceMembers.html","topicHref":"CSharp8.DefaultInterfaceMembers.html","topicUid":"CSharp8.DefaultInterfaceMembers"},{"name":"DefaultInterfaceMembers.IA","href":"CSharp8.DefaultInterfaceMembers.IA.html","topicHref":"CSharp8.DefaultInterfaceMembers.IA.html","topicUid":"CSharp8.DefaultInterfaceMembers.IA"},{"name":"DefaultInterfaceMembers.Nested","href":"CSharp8.DefaultInterfaceMembers.Nested.html","topicHref":"CSharp8.DefaultInterfaceMembers.Nested.html","topicUid":"CSharp8.DefaultInterfaceMembers.Nested"},{"name":"DisposableRefStructs","href":"CSharp8.DisposableRefStructs.html","topicHref":"CSharp8.DisposableRefStructs.html","topicUid":"CSharp8.DisposableRefStructs"},{"name":"Issue4007","href":"CSharp8.Issue4007.html","topicHref":"CSharp8.Issue4007.html","topicUid":"CSharp8.Issue4007"},{"name":"Misc","href":"CSharp8.Misc.html","topicHref":"CSharp8.Misc.html","topicUid":"CSharp8.Misc"},{"name":"NullableReferenceTypes","href":"CSharp8.NullableReferenceTypes.html","topicHref":"CSharp8.NullableReferenceTypes.html","topicUid":"CSharp8.NullableReferenceTypes"},{"name":"ReadOnlyMembers","href":"CSharp8.ReadOnlyMembers.html","topicHref":"CSharp8.ReadOnlyMembers.html","topicUid":"CSharp8.ReadOnlyMembers"}]},{"name":"CSharp9","href":"CSharp9.html","topicHref":"CSharp9.html","topicUid":"CSharp9","items":[{"name":"FunctionPointers","href":"CSharp9.FunctionPointers.html","topicHref":"CSharp9.FunctionPointers.html","topicUid":"CSharp9.FunctionPointers"},{"name":"InitOnlySetters","href":"CSharp9.InitOnlySetters.html","topicHref":"CSharp9.InitOnlySetters.html","topicUid":"CSharp9.InitOnlySetters"},{"name":"NativeSizedIntegers","href":"CSharp9.NativeSizedIntegers.html","topicHref":"CSharp9.NativeSizedIntegers.html","topicUid":"CSharp9.NativeSizedIntegers"},{"name":"RecordTypes","href":"CSharp9.RecordTypes.html","topicHref":"CSharp9.RecordTypes.html","topicUid":"CSharp9.RecordTypes"},{"name":"RecordTypes.Person","href":"CSharp9.RecordTypes.Person.html","topicHref":"CSharp9.RecordTypes.Person.html","topicUid":"CSharp9.RecordTypes.Person"},{"name":"RecordTypes.Teacher","href":"CSharp9.RecordTypes.Teacher.html","topicHref":"CSharp9.RecordTypes.Teacher.html","topicUid":"CSharp9.RecordTypes.Teacher"}]}],"memberLayout":"SamePage"} diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/search-stopwords.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/search-stopwords.verified.json deleted file mode 100644 index 0b011171b0a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/search-stopwords.verified.json +++ /dev/null @@ -1,121 +0,0 @@ -[ - "a", - "able", - "about", - "across", - "after", - "all", - "almost", - "also", - "am", - "among", - "an", - "and", - "any", - "are", - "as", - "at", - "be", - "because", - "been", - "but", - "by", - "can", - "cannot", - "could", - "dear", - "did", - "do", - "does", - "either", - "else", - "ever", - "every", - "for", - "from", - "get", - "got", - "had", - "has", - "have", - "he", - "her", - "hers", - "him", - "his", - "how", - "however", - "i", - "if", - "in", - "into", - "is", - "it", - "its", - "just", - "least", - "let", - "like", - "likely", - "may", - "me", - "might", - "most", - "must", - "my", - "neither", - "no", - "nor", - "not", - "of", - "off", - "often", - "on", - "only", - "or", - "other", - "our", - "own", - "rather", - "said", - "say", - "says", - "she", - "should", - "since", - "so", - "some", - "than", - "that", - "the", - "their", - "them", - "then", - "there", - "these", - "they", - "this", - "tis", - "to", - "too", - "twas", - "us", - "wants", - "was", - "we", - "were", - "what", - "when", - "where", - "which", - "while", - "who", - "whom", - "why", - "will", - "with", - "would", - "yet", - "you", - "your" -] diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/xrefmap.verified.yml b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/xrefmap.verified.yml index 263135a76c7..5c56b1b6db4 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/xrefmap.verified.yml +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/xrefmap.verified.yml @@ -3,62 +3,62 @@ sorted: true references: - uid: CSharp10 name: CSharp10 - href: api/CSharp10.html + href: api/CSharp10.yml commentId: N:CSharp10 fullName: CSharp10 nameWithType: CSharp10 - uid: CSharp10.ConstantInterpolatedStrings name: ConstantInterpolatedStrings - href: api/CSharp10.ConstantInterpolatedStrings.html + href: api/CSharp10.ConstantInterpolatedStrings.yml commentId: T:CSharp10.ConstantInterpolatedStrings fullName: CSharp10.ConstantInterpolatedStrings nameWithType: ConstantInterpolatedStrings - uid: CSharp10.ConstantInterpolatedStrings.S1 name: S1 - href: api/CSharp10.ConstantInterpolatedStrings.html#CSharp10_ConstantInterpolatedStrings_S1 + href: api/CSharp10.ConstantInterpolatedStrings.yml commentId: F:CSharp10.ConstantInterpolatedStrings.S1 fullName: CSharp10.ConstantInterpolatedStrings.S1 nameWithType: ConstantInterpolatedStrings.S1 - uid: CSharp10.ConstantInterpolatedStrings.S2 name: S2 - href: api/CSharp10.ConstantInterpolatedStrings.html#CSharp10_ConstantInterpolatedStrings_S2 + href: api/CSharp10.ConstantInterpolatedStrings.yml commentId: F:CSharp10.ConstantInterpolatedStrings.S2 fullName: CSharp10.ConstantInterpolatedStrings.S2 nameWithType: ConstantInterpolatedStrings.S2 - uid: CSharp10.ConstantInterpolatedStrings.S3 name: S3 - href: api/CSharp10.ConstantInterpolatedStrings.html#CSharp10_ConstantInterpolatedStrings_S3 + href: api/CSharp10.ConstantInterpolatedStrings.yml commentId: F:CSharp10.ConstantInterpolatedStrings.S3 fullName: CSharp10.ConstantInterpolatedStrings.S3 nameWithType: ConstantInterpolatedStrings.S3 - uid: CSharp10.Issue7737 name: Issue7737 - href: api/CSharp10.Issue7737.html + href: api/CSharp10.Issue7737.yml commentId: T:CSharp10.Issue7737 fullName: CSharp10.Issue7737 nameWithType: Issue7737 - uid: CSharp10.Issue7737.Foo name: Foo() - href: api/CSharp10.Issue7737.html#CSharp10_Issue7737_Foo + href: api/CSharp10.Issue7737.yml commentId: M:CSharp10.Issue7737.Foo fullName: CSharp10.Issue7737.Foo() nameWithType: Issue7737.Foo() - uid: CSharp10.Issue7737.Foo* name: Foo - href: api/CSharp10.Issue7737.html#CSharp10_Issue7737_Foo_ + href: api/CSharp10.Issue7737.yml commentId: Overload:CSharp10.Issue7737.Foo isSpec: "True" fullName: CSharp10.Issue7737.Foo nameWithType: Issue7737.Foo - uid: CSharp10.ParameterlessStructConstructors name: ParameterlessStructConstructors - href: api/CSharp10.ParameterlessStructConstructors.html + href: api/CSharp10.ParameterlessStructConstructors.yml commentId: T:CSharp10.ParameterlessStructConstructors fullName: CSharp10.ParameterlessStructConstructors nameWithType: ParameterlessStructConstructors - uid: CSharp10.ParameterlessStructConstructors.#ctor name: ParameterlessStructConstructors() - href: api/CSharp10.ParameterlessStructConstructors.html#CSharp10_ParameterlessStructConstructors__ctor + href: api/CSharp10.ParameterlessStructConstructors.yml commentId: M:CSharp10.ParameterlessStructConstructors.#ctor name.vb: New() fullName: CSharp10.ParameterlessStructConstructors.ParameterlessStructConstructors() @@ -67,7 +67,7 @@ references: nameWithType.vb: ParameterlessStructConstructors.New() - uid: CSharp10.ParameterlessStructConstructors.#ctor* name: ParameterlessStructConstructors - href: api/CSharp10.ParameterlessStructConstructors.html#CSharp10_ParameterlessStructConstructors__ctor_ + href: api/CSharp10.ParameterlessStructConstructors.yml commentId: Overload:CSharp10.ParameterlessStructConstructors.#ctor isSpec: "True" name.vb: New @@ -77,45 +77,45 @@ references: nameWithType.vb: ParameterlessStructConstructors.New - uid: CSharp10.ParameterlessStructConstructors.Description name: Description - href: api/CSharp10.ParameterlessStructConstructors.html#CSharp10_ParameterlessStructConstructors_Description + href: api/CSharp10.ParameterlessStructConstructors.yml commentId: P:CSharp10.ParameterlessStructConstructors.Description fullName: CSharp10.ParameterlessStructConstructors.Description nameWithType: ParameterlessStructConstructors.Description - uid: CSharp10.ParameterlessStructConstructors.Description* name: Description - href: api/CSharp10.ParameterlessStructConstructors.html#CSharp10_ParameterlessStructConstructors_Description_ + href: api/CSharp10.ParameterlessStructConstructors.yml commentId: Overload:CSharp10.ParameterlessStructConstructors.Description isSpec: "True" fullName: CSharp10.ParameterlessStructConstructors.Description nameWithType: ParameterlessStructConstructors.Description - uid: CSharp10.ParameterlessStructConstructors.X name: X - href: api/CSharp10.ParameterlessStructConstructors.html#CSharp10_ParameterlessStructConstructors_X + href: api/CSharp10.ParameterlessStructConstructors.yml commentId: F:CSharp10.ParameterlessStructConstructors.X fullName: CSharp10.ParameterlessStructConstructors.X nameWithType: ParameterlessStructConstructors.X - uid: CSharp10.ParameterlessStructConstructors.Y name: Y - href: api/CSharp10.ParameterlessStructConstructors.html#CSharp10_ParameterlessStructConstructors_Y + href: api/CSharp10.ParameterlessStructConstructors.yml commentId: P:CSharp10.ParameterlessStructConstructors.Y fullName: CSharp10.ParameterlessStructConstructors.Y nameWithType: ParameterlessStructConstructors.Y - uid: CSharp10.ParameterlessStructConstructors.Y* name: Y - href: api/CSharp10.ParameterlessStructConstructors.html#CSharp10_ParameterlessStructConstructors_Y_ + href: api/CSharp10.ParameterlessStructConstructors.yml commentId: Overload:CSharp10.ParameterlessStructConstructors.Y isSpec: "True" fullName: CSharp10.ParameterlessStructConstructors.Y nameWithType: ParameterlessStructConstructors.Y - uid: CSharp10.ReadOnlyRecordStruct name: ReadOnlyRecordStruct - href: api/CSharp10.ReadOnlyRecordStruct.html + href: api/CSharp10.ReadOnlyRecordStruct.yml commentId: T:CSharp10.ReadOnlyRecordStruct fullName: CSharp10.ReadOnlyRecordStruct nameWithType: ReadOnlyRecordStruct - uid: CSharp10.ReadOnlyRecordStruct.#ctor(System.Double,System.Double,System.Double) name: ReadOnlyRecordStruct(double, double, double) - href: api/CSharp10.ReadOnlyRecordStruct.html#CSharp10_ReadOnlyRecordStruct__ctor_System_Double_System_Double_System_Double_ + href: api/CSharp10.ReadOnlyRecordStruct.yml commentId: M:CSharp10.ReadOnlyRecordStruct.#ctor(System.Double,System.Double,System.Double) name.vb: New(Double, Double, Double) fullName: CSharp10.ReadOnlyRecordStruct.ReadOnlyRecordStruct(double, double, double) @@ -124,7 +124,7 @@ references: nameWithType.vb: ReadOnlyRecordStruct.New(Double, Double, Double) - uid: CSharp10.ReadOnlyRecordStruct.#ctor* name: ReadOnlyRecordStruct - href: api/CSharp10.ReadOnlyRecordStruct.html#CSharp10_ReadOnlyRecordStruct__ctor_ + href: api/CSharp10.ReadOnlyRecordStruct.yml commentId: Overload:CSharp10.ReadOnlyRecordStruct.#ctor isSpec: "True" name.vb: New @@ -134,52 +134,52 @@ references: nameWithType.vb: ReadOnlyRecordStruct.New - uid: CSharp10.ReadOnlyRecordStruct.X name: X - href: api/CSharp10.ReadOnlyRecordStruct.html#CSharp10_ReadOnlyRecordStruct_X + href: api/CSharp10.ReadOnlyRecordStruct.yml commentId: P:CSharp10.ReadOnlyRecordStruct.X fullName: CSharp10.ReadOnlyRecordStruct.X nameWithType: ReadOnlyRecordStruct.X - uid: CSharp10.ReadOnlyRecordStruct.X* name: X - href: api/CSharp10.ReadOnlyRecordStruct.html#CSharp10_ReadOnlyRecordStruct_X_ + href: api/CSharp10.ReadOnlyRecordStruct.yml commentId: Overload:CSharp10.ReadOnlyRecordStruct.X isSpec: "True" fullName: CSharp10.ReadOnlyRecordStruct.X nameWithType: ReadOnlyRecordStruct.X - uid: CSharp10.ReadOnlyRecordStruct.Y name: Y - href: api/CSharp10.ReadOnlyRecordStruct.html#CSharp10_ReadOnlyRecordStruct_Y + href: api/CSharp10.ReadOnlyRecordStruct.yml commentId: P:CSharp10.ReadOnlyRecordStruct.Y fullName: CSharp10.ReadOnlyRecordStruct.Y nameWithType: ReadOnlyRecordStruct.Y - uid: CSharp10.ReadOnlyRecordStruct.Y* name: Y - href: api/CSharp10.ReadOnlyRecordStruct.html#CSharp10_ReadOnlyRecordStruct_Y_ + href: api/CSharp10.ReadOnlyRecordStruct.yml commentId: Overload:CSharp10.ReadOnlyRecordStruct.Y isSpec: "True" fullName: CSharp10.ReadOnlyRecordStruct.Y nameWithType: ReadOnlyRecordStruct.Y - uid: CSharp10.ReadOnlyRecordStruct.Z name: Z - href: api/CSharp10.ReadOnlyRecordStruct.html#CSharp10_ReadOnlyRecordStruct_Z + href: api/CSharp10.ReadOnlyRecordStruct.yml commentId: P:CSharp10.ReadOnlyRecordStruct.Z fullName: CSharp10.ReadOnlyRecordStruct.Z nameWithType: ReadOnlyRecordStruct.Z - uid: CSharp10.ReadOnlyRecordStruct.Z* name: Z - href: api/CSharp10.ReadOnlyRecordStruct.html#CSharp10_ReadOnlyRecordStruct_Z_ + href: api/CSharp10.ReadOnlyRecordStruct.yml commentId: Overload:CSharp10.ReadOnlyRecordStruct.Z isSpec: "True" fullName: CSharp10.ReadOnlyRecordStruct.Z nameWithType: ReadOnlyRecordStruct.Z - uid: CSharp10.RecordClass name: RecordClass - href: api/CSharp10.RecordClass.html + href: api/CSharp10.RecordClass.yml commentId: T:CSharp10.RecordClass fullName: CSharp10.RecordClass nameWithType: RecordClass - uid: CSharp10.RecordClass.#ctor(System.String,System.String) name: RecordClass(string, string) - href: api/CSharp10.RecordClass.html#CSharp10_RecordClass__ctor_System_String_System_String_ + href: api/CSharp10.RecordClass.yml commentId: M:CSharp10.RecordClass.#ctor(System.String,System.String) name.vb: New(String, String) fullName: CSharp10.RecordClass.RecordClass(string, string) @@ -188,7 +188,7 @@ references: nameWithType.vb: RecordClass.New(String, String) - uid: CSharp10.RecordClass.#ctor* name: RecordClass - href: api/CSharp10.RecordClass.html#CSharp10_RecordClass__ctor_ + href: api/CSharp10.RecordClass.yml commentId: Overload:CSharp10.RecordClass.#ctor isSpec: "True" name.vb: New @@ -198,39 +198,39 @@ references: nameWithType.vb: RecordClass.New - uid: CSharp10.RecordClass.FirstName name: FirstName - href: api/CSharp10.RecordClass.html#CSharp10_RecordClass_FirstName + href: api/CSharp10.RecordClass.yml commentId: P:CSharp10.RecordClass.FirstName fullName: CSharp10.RecordClass.FirstName nameWithType: RecordClass.FirstName - uid: CSharp10.RecordClass.FirstName* name: FirstName - href: api/CSharp10.RecordClass.html#CSharp10_RecordClass_FirstName_ + href: api/CSharp10.RecordClass.yml commentId: Overload:CSharp10.RecordClass.FirstName isSpec: "True" fullName: CSharp10.RecordClass.FirstName nameWithType: RecordClass.FirstName - uid: CSharp10.RecordClass.LastName name: LastName - href: api/CSharp10.RecordClass.html#CSharp10_RecordClass_LastName + href: api/CSharp10.RecordClass.yml commentId: P:CSharp10.RecordClass.LastName fullName: CSharp10.RecordClass.LastName nameWithType: RecordClass.LastName - uid: CSharp10.RecordClass.LastName* name: LastName - href: api/CSharp10.RecordClass.html#CSharp10_RecordClass_LastName_ + href: api/CSharp10.RecordClass.yml commentId: Overload:CSharp10.RecordClass.LastName isSpec: "True" fullName: CSharp10.RecordClass.LastName nameWithType: RecordClass.LastName - uid: CSharp10.RecordStruct name: RecordStruct - href: api/CSharp10.RecordStruct.html + href: api/CSharp10.RecordStruct.yml commentId: T:CSharp10.RecordStruct fullName: CSharp10.RecordStruct nameWithType: RecordStruct - uid: CSharp10.RecordStruct.#ctor(System.DateTime,System.Double) name: RecordStruct(DateTime, double) - href: api/CSharp10.RecordStruct.html#CSharp10_RecordStruct__ctor_System_DateTime_System_Double_ + href: api/CSharp10.RecordStruct.yml commentId: M:CSharp10.RecordStruct.#ctor(System.DateTime,System.Double) name.vb: New(Date, Double) fullName: CSharp10.RecordStruct.RecordStruct(System.DateTime, double) @@ -239,7 +239,7 @@ references: nameWithType.vb: RecordStruct.New(Date, Double) - uid: CSharp10.RecordStruct.#ctor* name: RecordStruct - href: api/CSharp10.RecordStruct.html#CSharp10_RecordStruct__ctor_ + href: api/CSharp10.RecordStruct.yml commentId: Overload:CSharp10.RecordStruct.#ctor isSpec: "True" name.vb: New @@ -249,39 +249,39 @@ references: nameWithType.vb: RecordStruct.New - uid: CSharp10.RecordStruct.Measurement name: Measurement - href: api/CSharp10.RecordStruct.html#CSharp10_RecordStruct_Measurement + href: api/CSharp10.RecordStruct.yml commentId: P:CSharp10.RecordStruct.Measurement fullName: CSharp10.RecordStruct.Measurement nameWithType: RecordStruct.Measurement - uid: CSharp10.RecordStruct.Measurement* name: Measurement - href: api/CSharp10.RecordStruct.html#CSharp10_RecordStruct_Measurement_ + href: api/CSharp10.RecordStruct.yml commentId: Overload:CSharp10.RecordStruct.Measurement isSpec: "True" fullName: CSharp10.RecordStruct.Measurement nameWithType: RecordStruct.Measurement - uid: CSharp10.RecordStruct.TakenAt name: TakenAt - href: api/CSharp10.RecordStruct.html#CSharp10_RecordStruct_TakenAt + href: api/CSharp10.RecordStruct.yml commentId: P:CSharp10.RecordStruct.TakenAt fullName: CSharp10.RecordStruct.TakenAt nameWithType: RecordStruct.TakenAt - uid: CSharp10.RecordStruct.TakenAt* name: TakenAt - href: api/CSharp10.RecordStruct.html#CSharp10_RecordStruct_TakenAt_ + href: api/CSharp10.RecordStruct.yml commentId: Overload:CSharp10.RecordStruct.TakenAt isSpec: "True" fullName: CSharp10.RecordStruct.TakenAt nameWithType: RecordStruct.TakenAt - uid: CSharp11 name: CSharp11 - href: api/CSharp11.html + href: api/CSharp11.yml commentId: N:CSharp11 fullName: CSharp11 nameWithType: CSharp11 - uid: CSharp11.CheckedUserDefinedOperators`1 name: CheckedUserDefinedOperators - href: api/CSharp11.CheckedUserDefinedOperators-1.html + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: T:CSharp11.CheckedUserDefinedOperators`1 name.vb: CheckedUserDefinedOperators(Of T) fullName: CSharp11.CheckedUserDefinedOperators @@ -290,7 +290,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_Addition(`0,`0) name: operator +(T, T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Addition__0__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_Addition(`0,`0) name.vb: +(T, T) fullName: CSharp11.CheckedUserDefinedOperators.operator +(T, T) @@ -299,7 +299,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).+(T, T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_Addition* name: operator + - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Addition_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_Addition isSpec: "True" name.vb: + @@ -309,7 +309,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).+ - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedAddition(`0,`0) name: operator checked +(T, T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedAddition__0__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_CheckedAddition(`0,`0) name.vb: op_CheckedAddition(T, T) fullName: CSharp11.CheckedUserDefinedOperators.operator checked +(T, T) @@ -318,7 +318,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedAddition(T, T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedAddition* name: operator checked + - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedAddition_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_CheckedAddition isSpec: "True" name.vb: op_CheckedAddition @@ -328,7 +328,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedAddition - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedDecrement(`0) name: operator checked --(T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedDecrement__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_CheckedDecrement(`0) name.vb: op_CheckedDecrement(T) fullName: CSharp11.CheckedUserDefinedOperators.operator checked --(T) @@ -337,7 +337,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedDecrement(T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedDecrement* name: operator checked -- - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedDecrement_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_CheckedDecrement isSpec: "True" name.vb: op_CheckedDecrement @@ -347,7 +347,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedDecrement - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedDivision(`0,`0) name: operator checked /(T, T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedDivision__0__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_CheckedDivision(`0,`0) name.vb: op_CheckedDivision(T, T) fullName: CSharp11.CheckedUserDefinedOperators.operator checked /(T, T) @@ -356,7 +356,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedDivision(T, T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedDivision* name: operator checked / - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedDivision_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_CheckedDivision isSpec: "True" name.vb: op_CheckedDivision @@ -366,7 +366,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedDivision - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedExplicit(`0)~System.Int32 name: explicit operator checked int(T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedExplicit__0__System_Int32 + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_CheckedExplicit(`0)~System.Int32 name.vb: op_CheckedExplicit(T) fullName: CSharp11.CheckedUserDefinedOperators.explicit operator checked int(T) @@ -375,7 +375,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedExplicit(T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedExplicit* name: explicit operator checked - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedExplicit_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_CheckedExplicit isSpec: "True" name.vb: op_CheckedExplicit @@ -385,7 +385,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedExplicit - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedIncrement(`0) name: operator checked ++(T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedIncrement__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_CheckedIncrement(`0) name.vb: op_CheckedIncrement(T) fullName: CSharp11.CheckedUserDefinedOperators.operator checked ++(T) @@ -394,7 +394,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedIncrement(T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedIncrement* name: operator checked ++ - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedIncrement_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_CheckedIncrement isSpec: "True" name.vb: op_CheckedIncrement @@ -404,7 +404,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedIncrement - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedMultiply(`0,`0) name: operator checked *(T, T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedMultiply__0__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_CheckedMultiply(`0,`0) name.vb: op_CheckedMultiply(T, T) fullName: CSharp11.CheckedUserDefinedOperators.operator checked *(T, T) @@ -413,7 +413,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedMultiply(T, T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedMultiply* name: operator checked * - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedMultiply_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_CheckedMultiply isSpec: "True" name.vb: op_CheckedMultiply @@ -423,7 +423,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedMultiply - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedSubtraction(`0,`0) name: operator checked -(T, T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedSubtraction__0__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_CheckedSubtraction(`0,`0) name.vb: op_CheckedSubtraction(T, T) fullName: CSharp11.CheckedUserDefinedOperators.operator checked -(T, T) @@ -432,7 +432,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedSubtraction(T, T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedSubtraction* name: operator checked - - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedSubtraction_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_CheckedSubtraction isSpec: "True" name.vb: op_CheckedSubtraction @@ -442,7 +442,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedSubtraction - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedUnaryNegation(`0) name: operator checked -(T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedUnaryNegation__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_CheckedUnaryNegation(`0) name.vb: op_CheckedUnaryNegation(T) fullName: CSharp11.CheckedUserDefinedOperators.operator checked -(T) @@ -451,7 +451,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedUnaryNegation(T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_CheckedUnaryNegation* name: operator checked - - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_CheckedUnaryNegation_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_CheckedUnaryNegation isSpec: "True" name.vb: op_CheckedUnaryNegation @@ -461,7 +461,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_CheckedUnaryNegation - uid: CSharp11.CheckedUserDefinedOperators`1.op_Decrement(`0) name: operator --(T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Decrement__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_Decrement(`0) name.vb: op_Decrement(T) fullName: CSharp11.CheckedUserDefinedOperators.operator --(T) @@ -470,7 +470,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_Decrement(T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_Decrement* name: operator -- - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Decrement_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_Decrement isSpec: "True" name.vb: op_Decrement @@ -480,7 +480,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_Decrement - uid: CSharp11.CheckedUserDefinedOperators`1.op_Division(`0,`0) name: operator /(T, T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Division__0__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_Division(`0,`0) name.vb: /(T, T) fullName: CSharp11.CheckedUserDefinedOperators.operator /(T, T) @@ -489,7 +489,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T)./(T, T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_Division* name: operator / - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Division_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_Division isSpec: "True" name.vb: / @@ -499,7 +499,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T)./ - uid: CSharp11.CheckedUserDefinedOperators`1.op_Explicit(`0)~System.Int32 name: explicit operator int(T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Explicit__0__System_Int32 + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_Explicit(`0)~System.Int32 name.vb: CType(T) fullName: CSharp11.CheckedUserDefinedOperators.explicit operator int(T) @@ -508,7 +508,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).CType(T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_Explicit* name: explicit operator - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Explicit_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_Explicit isSpec: "True" name.vb: CType @@ -518,7 +518,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).CType - uid: CSharp11.CheckedUserDefinedOperators`1.op_Increment(`0) name: operator ++(T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Increment__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_Increment(`0) name.vb: op_Increment(T) fullName: CSharp11.CheckedUserDefinedOperators.operator ++(T) @@ -527,7 +527,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_Increment(T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_Increment* name: operator ++ - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Increment_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_Increment isSpec: "True" name.vb: op_Increment @@ -537,7 +537,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).op_Increment - uid: CSharp11.CheckedUserDefinedOperators`1.op_Multiply(`0,`0) name: operator *(T, T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Multiply__0__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_Multiply(`0,`0) name.vb: '*(T, T)' fullName: CSharp11.CheckedUserDefinedOperators.operator *(T, T) @@ -546,7 +546,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).*(T, T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_Multiply* name: operator * - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Multiply_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_Multiply isSpec: "True" name.vb: '*' @@ -556,7 +556,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).* - uid: CSharp11.CheckedUserDefinedOperators`1.op_Subtraction(`0,`0) name: operator -(T, T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Subtraction__0__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_Subtraction(`0,`0) name.vb: -(T, T) fullName: CSharp11.CheckedUserDefinedOperators.operator -(T, T) @@ -565,7 +565,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).-(T, T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_Subtraction* name: operator - - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_Subtraction_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_Subtraction isSpec: "True" name.vb: '-' @@ -575,7 +575,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).- - uid: CSharp11.CheckedUserDefinedOperators`1.op_UnaryNegation(`0) name: operator -(T) - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_UnaryNegation__0_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: M:CSharp11.CheckedUserDefinedOperators`1.op_UnaryNegation(`0) name.vb: -(T) fullName: CSharp11.CheckedUserDefinedOperators.operator -(T) @@ -584,7 +584,7 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).-(T) - uid: CSharp11.CheckedUserDefinedOperators`1.op_UnaryNegation* name: operator - - href: api/CSharp11.CheckedUserDefinedOperators-1.html#CSharp11_CheckedUserDefinedOperators_1_op_UnaryNegation_ + href: api/CSharp11.CheckedUserDefinedOperators-1.yml commentId: Overload:CSharp11.CheckedUserDefinedOperators`1.op_UnaryNegation isSpec: "True" name.vb: '-' @@ -594,58 +594,58 @@ references: nameWithType.vb: CheckedUserDefinedOperators(Of T).- - uid: CSharp11.RequiredModifier name: RequiredModifier - href: api/CSharp11.RequiredModifier.html + href: api/CSharp11.RequiredModifier.yml commentId: T:CSharp11.RequiredModifier fullName: CSharp11.RequiredModifier nameWithType: RequiredModifier - uid: CSharp11.RequiredModifier.FirstName name: FirstName - href: api/CSharp11.RequiredModifier.html#CSharp11_RequiredModifier_FirstName + href: api/CSharp11.RequiredModifier.yml commentId: P:CSharp11.RequiredModifier.FirstName fullName: CSharp11.RequiredModifier.FirstName nameWithType: RequiredModifier.FirstName - uid: CSharp11.RequiredModifier.FirstName* name: FirstName - href: api/CSharp11.RequiredModifier.html#CSharp11_RequiredModifier_FirstName_ + href: api/CSharp11.RequiredModifier.yml commentId: Overload:CSharp11.RequiredModifier.FirstName isSpec: "True" fullName: CSharp11.RequiredModifier.FirstName nameWithType: RequiredModifier.FirstName - uid: CSharp11.RequiredModifier.LastName name: LastName - href: api/CSharp11.RequiredModifier.html#CSharp11_RequiredModifier_LastName + href: api/CSharp11.RequiredModifier.yml commentId: P:CSharp11.RequiredModifier.LastName fullName: CSharp11.RequiredModifier.LastName nameWithType: RequiredModifier.LastName - uid: CSharp11.RequiredModifier.LastName* name: LastName - href: api/CSharp11.RequiredModifier.html#CSharp11_RequiredModifier_LastName_ + href: api/CSharp11.RequiredModifier.yml commentId: Overload:CSharp11.RequiredModifier.LastName isSpec: "True" fullName: CSharp11.RequiredModifier.LastName nameWithType: RequiredModifier.LastName - uid: CSharp11.RequiredModifier.MiddleName name: MiddleName - href: api/CSharp11.RequiredModifier.html#CSharp11_RequiredModifier_MiddleName + href: api/CSharp11.RequiredModifier.yml commentId: P:CSharp11.RequiredModifier.MiddleName fullName: CSharp11.RequiredModifier.MiddleName nameWithType: RequiredModifier.MiddleName - uid: CSharp11.RequiredModifier.MiddleName* name: MiddleName - href: api/CSharp11.RequiredModifier.html#CSharp11_RequiredModifier_MiddleName_ + href: api/CSharp11.RequiredModifier.yml commentId: Overload:CSharp11.RequiredModifier.MiddleName isSpec: "True" fullName: CSharp11.RequiredModifier.MiddleName nameWithType: RequiredModifier.MiddleName - uid: CSharp11.ScopedModifier name: ScopedModifier - href: api/CSharp11.ScopedModifier.html + href: api/CSharp11.ScopedModifier.yml commentId: T:CSharp11.ScopedModifier fullName: CSharp11.ScopedModifier nameWithType: ScopedModifier - uid: CSharp11.ScopedModifier.CreateSpan(System.Int32@) name: CreateSpan(scoped ref int) - href: api/CSharp11.ScopedModifier.html#CSharp11_ScopedModifier_CreateSpan_System_Int32__ + href: api/CSharp11.ScopedModifier.yml commentId: M:CSharp11.ScopedModifier.CreateSpan(System.Int32@) name.vb: CreateSpan(Integer) fullName: CSharp11.ScopedModifier.CreateSpan(scoped ref int) @@ -654,20 +654,20 @@ references: nameWithType.vb: ScopedModifier.CreateSpan(Integer) - uid: CSharp11.ScopedModifier.CreateSpan* name: CreateSpan - href: api/CSharp11.ScopedModifier.html#CSharp11_ScopedModifier_CreateSpan_ + href: api/CSharp11.ScopedModifier.yml commentId: Overload:CSharp11.ScopedModifier.CreateSpan isSpec: "True" fullName: CSharp11.ScopedModifier.CreateSpan nameWithType: ScopedModifier.CreateSpan - uid: CSharp11.StaticAbstractMembersInInterfaces name: StaticAbstractMembersInInterfaces - href: api/CSharp11.StaticAbstractMembersInInterfaces.html + href: api/CSharp11.StaticAbstractMembersInInterfaces.yml commentId: T:CSharp11.StaticAbstractMembersInInterfaces fullName: CSharp11.StaticAbstractMembersInInterfaces nameWithType: StaticAbstractMembersInInterfaces - uid: CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1 name: StaticAbstractMembersInInterfaces.IGetNext - href: api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html + href: api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.yml commentId: T:CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1 name.vb: StaticAbstractMembersInInterfaces.IGetNext(Of T) fullName: CSharp11.StaticAbstractMembersInInterfaces.IGetNext @@ -676,7 +676,7 @@ references: nameWithType.vb: StaticAbstractMembersInInterfaces.IGetNext(Of T) - uid: CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1.op_Increment(`0) name: operator ++(T) - href: api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html#CSharp11_StaticAbstractMembersInInterfaces_IGetNext_1_op_Increment__0_ + href: api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.yml commentId: M:CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1.op_Increment(`0) name.vb: op_Increment(T) fullName: CSharp11.StaticAbstractMembersInInterfaces.IGetNext.operator ++(T) @@ -685,7 +685,7 @@ references: nameWithType.vb: StaticAbstractMembersInInterfaces.IGetNext(Of T).op_Increment(T) - uid: CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1.op_Increment* name: operator ++ - href: api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html#CSharp11_StaticAbstractMembersInInterfaces_IGetNext_1_op_Increment_ + href: api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.yml commentId: Overload:CSharp11.StaticAbstractMembersInInterfaces.IGetNext`1.op_Increment isSpec: "True" name.vb: op_Increment @@ -695,13 +695,13 @@ references: nameWithType.vb: StaticAbstractMembersInInterfaces.IGetNext(Of T).op_Increment - uid: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence name: StaticAbstractMembersInInterfaces.RepeatSequence - href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html + href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.yml commentId: T:CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence fullName: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence nameWithType: StaticAbstractMembersInInterfaces.RepeatSequence - uid: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.#ctor name: RepeatSequence() - href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html#CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence__ctor + href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.yml commentId: M:CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.#ctor name.vb: New() fullName: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.RepeatSequence() @@ -710,7 +710,7 @@ references: nameWithType.vb: StaticAbstractMembersInInterfaces.RepeatSequence.New() - uid: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.#ctor* name: RepeatSequence - href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html#CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence__ctor_ + href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.yml commentId: Overload:CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.#ctor isSpec: "True" name.vb: New @@ -720,26 +720,26 @@ references: nameWithType.vb: StaticAbstractMembersInInterfaces.RepeatSequence.New - uid: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.Text name: Text - href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html#CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_Text + href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.yml commentId: F:CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.Text fullName: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.Text nameWithType: StaticAbstractMembersInInterfaces.RepeatSequence.Text - uid: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString name: ToString() - href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html#CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_ToString + href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.yml commentId: M:CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString fullName: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString() nameWithType: StaticAbstractMembersInInterfaces.RepeatSequence.ToString() - uid: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString* name: ToString - href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html#CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_ToString_ + href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.yml commentId: Overload:CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString isSpec: "True" fullName: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.ToString nameWithType: StaticAbstractMembersInInterfaces.RepeatSequence.ToString - uid: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment(CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence) name: operator ++(RepeatSequence) - href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html#CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_op_Increment_CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_ + href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.yml commentId: M:CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment(CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence) name.vb: op_Increment(RepeatSequence) fullName: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.operator ++(CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence) @@ -748,7 +748,7 @@ references: nameWithType.vb: StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment(StaticAbstractMembersInInterfaces.RepeatSequence) - uid: CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment* name: operator ++ - href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html#CSharp11_StaticAbstractMembersInInterfaces_RepeatSequence_op_Increment_ + href: api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.yml commentId: Overload:CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment isSpec: "True" name.vb: op_Increment @@ -758,68 +758,68 @@ references: nameWithType.vb: StaticAbstractMembersInInterfaces.RepeatSequence.op_Increment - uid: CSharp12 name: CSharp12 - href: api/CSharp12.html + href: api/CSharp12.yml commentId: N:CSharp12 fullName: CSharp12 nameWithType: CSharp12 - uid: CSharp12.CollectionExpressions name: CollectionExpressions - href: api/CSharp12.CollectionExpressions.html + href: api/CSharp12.CollectionExpressions.yml commentId: T:CSharp12.CollectionExpressions fullName: CSharp12.CollectionExpressions nameWithType: CollectionExpressions - uid: CSharp12.CollectionExpressions.a name: a - href: api/CSharp12.CollectionExpressions.html#CSharp12_CollectionExpressions_a + href: api/CSharp12.CollectionExpressions.yml commentId: F:CSharp12.CollectionExpressions.a fullName: CSharp12.CollectionExpressions.a nameWithType: CollectionExpressions.a - uid: CSharp12.CollectionExpressions.twoD name: twoD - href: api/CSharp12.CollectionExpressions.html#CSharp12_CollectionExpressions_twoD + href: api/CSharp12.CollectionExpressions.yml commentId: F:CSharp12.CollectionExpressions.twoD fullName: CSharp12.CollectionExpressions.twoD nameWithType: CollectionExpressions.twoD - uid: CSharp12.DefaultLambdaParameters name: DefaultLambdaParameters - href: api/CSharp12.DefaultLambdaParameters.html + href: api/CSharp12.DefaultLambdaParameters.yml commentId: T:CSharp12.DefaultLambdaParameters fullName: CSharp12.DefaultLambdaParameters nameWithType: DefaultLambdaParameters - uid: CSharp12.DefaultLambdaParameters.Foo name: Foo() - href: api/CSharp12.DefaultLambdaParameters.html#CSharp12_DefaultLambdaParameters_Foo + href: api/CSharp12.DefaultLambdaParameters.yml commentId: M:CSharp12.DefaultLambdaParameters.Foo fullName: CSharp12.DefaultLambdaParameters.Foo() nameWithType: DefaultLambdaParameters.Foo() - uid: CSharp12.DefaultLambdaParameters.Foo* name: Foo - href: api/CSharp12.DefaultLambdaParameters.html#CSharp12_DefaultLambdaParameters_Foo_ + href: api/CSharp12.DefaultLambdaParameters.yml commentId: Overload:CSharp12.DefaultLambdaParameters.Foo isSpec: "True" fullName: CSharp12.DefaultLambdaParameters.Foo nameWithType: DefaultLambdaParameters.Foo - uid: CSharp12.InlineArrays name: InlineArrays - href: api/CSharp12.InlineArrays.html + href: api/CSharp12.InlineArrays.yml commentId: T:CSharp12.InlineArrays fullName: CSharp12.InlineArrays nameWithType: InlineArrays - uid: CSharp12.PrimaryConstructors name: PrimaryConstructors - href: api/CSharp12.PrimaryConstructors.html + href: api/CSharp12.PrimaryConstructors.yml commentId: T:CSharp12.PrimaryConstructors fullName: CSharp12.PrimaryConstructors nameWithType: PrimaryConstructors - uid: CSharp12.PrimaryConstructors.BankAccount name: PrimaryConstructors.BankAccount - href: api/CSharp12.PrimaryConstructors.BankAccount.html + href: api/CSharp12.PrimaryConstructors.BankAccount.yml commentId: T:CSharp12.PrimaryConstructors.BankAccount fullName: CSharp12.PrimaryConstructors.BankAccount nameWithType: PrimaryConstructors.BankAccount - uid: CSharp12.PrimaryConstructors.BankAccount.#ctor(System.String,System.String) name: BankAccount(string, string) - href: api/CSharp12.PrimaryConstructors.BankAccount.html#CSharp12_PrimaryConstructors_BankAccount__ctor_System_String_System_String_ + href: api/CSharp12.PrimaryConstructors.BankAccount.yml commentId: M:CSharp12.PrimaryConstructors.BankAccount.#ctor(System.String,System.String) name.vb: New(String, String) fullName: CSharp12.PrimaryConstructors.BankAccount.BankAccount(string, string) @@ -828,7 +828,7 @@ references: nameWithType.vb: PrimaryConstructors.BankAccount.New(String, String) - uid: CSharp12.PrimaryConstructors.BankAccount.#ctor* name: BankAccount - href: api/CSharp12.PrimaryConstructors.BankAccount.html#CSharp12_PrimaryConstructors_BankAccount__ctor_ + href: api/CSharp12.PrimaryConstructors.BankAccount.yml commentId: Overload:CSharp12.PrimaryConstructors.BankAccount.#ctor isSpec: "True" name.vb: New @@ -838,52 +838,52 @@ references: nameWithType.vb: PrimaryConstructors.BankAccount.New - uid: CSharp12.PrimaryConstructors.BankAccount.AccountID name: AccountID - href: api/CSharp12.PrimaryConstructors.BankAccount.html#CSharp12_PrimaryConstructors_BankAccount_AccountID + href: api/CSharp12.PrimaryConstructors.BankAccount.yml commentId: P:CSharp12.PrimaryConstructors.BankAccount.AccountID fullName: CSharp12.PrimaryConstructors.BankAccount.AccountID nameWithType: PrimaryConstructors.BankAccount.AccountID - uid: CSharp12.PrimaryConstructors.BankAccount.AccountID* name: AccountID - href: api/CSharp12.PrimaryConstructors.BankAccount.html#CSharp12_PrimaryConstructors_BankAccount_AccountID_ + href: api/CSharp12.PrimaryConstructors.BankAccount.yml commentId: Overload:CSharp12.PrimaryConstructors.BankAccount.AccountID isSpec: "True" fullName: CSharp12.PrimaryConstructors.BankAccount.AccountID nameWithType: PrimaryConstructors.BankAccount.AccountID - uid: CSharp12.PrimaryConstructors.BankAccount.Owner name: Owner - href: api/CSharp12.PrimaryConstructors.BankAccount.html#CSharp12_PrimaryConstructors_BankAccount_Owner + href: api/CSharp12.PrimaryConstructors.BankAccount.yml commentId: P:CSharp12.PrimaryConstructors.BankAccount.Owner fullName: CSharp12.PrimaryConstructors.BankAccount.Owner nameWithType: PrimaryConstructors.BankAccount.Owner - uid: CSharp12.PrimaryConstructors.BankAccount.Owner* name: Owner - href: api/CSharp12.PrimaryConstructors.BankAccount.html#CSharp12_PrimaryConstructors_BankAccount_Owner_ + href: api/CSharp12.PrimaryConstructors.BankAccount.yml commentId: Overload:CSharp12.PrimaryConstructors.BankAccount.Owner isSpec: "True" fullName: CSharp12.PrimaryConstructors.BankAccount.Owner nameWithType: PrimaryConstructors.BankAccount.Owner - uid: CSharp12.PrimaryConstructors.BankAccount.ToString name: ToString() - href: api/CSharp12.PrimaryConstructors.BankAccount.html#CSharp12_PrimaryConstructors_BankAccount_ToString + href: api/CSharp12.PrimaryConstructors.BankAccount.yml commentId: M:CSharp12.PrimaryConstructors.BankAccount.ToString fullName: CSharp12.PrimaryConstructors.BankAccount.ToString() nameWithType: PrimaryConstructors.BankAccount.ToString() - uid: CSharp12.PrimaryConstructors.BankAccount.ToString* name: ToString - href: api/CSharp12.PrimaryConstructors.BankAccount.html#CSharp12_PrimaryConstructors_BankAccount_ToString_ + href: api/CSharp12.PrimaryConstructors.BankAccount.yml commentId: Overload:CSharp12.PrimaryConstructors.BankAccount.ToString isSpec: "True" fullName: CSharp12.PrimaryConstructors.BankAccount.ToString nameWithType: PrimaryConstructors.BankAccount.ToString - uid: CSharp12.PrimaryConstructors.CheckAccount name: PrimaryConstructors.CheckAccount - href: api/CSharp12.PrimaryConstructors.CheckAccount.html + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: T:CSharp12.PrimaryConstructors.CheckAccount fullName: CSharp12.PrimaryConstructors.CheckAccount nameWithType: PrimaryConstructors.CheckAccount - uid: CSharp12.PrimaryConstructors.CheckAccount.#ctor(System.String,System.String,System.Decimal) name: CheckAccount(string, string, decimal) - href: api/CSharp12.PrimaryConstructors.CheckAccount.html#CSharp12_PrimaryConstructors_CheckAccount__ctor_System_String_System_String_System_Decimal_ + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: M:CSharp12.PrimaryConstructors.CheckAccount.#ctor(System.String,System.String,System.Decimal) name.vb: New(String, String, Decimal) fullName: CSharp12.PrimaryConstructors.CheckAccount.CheckAccount(string, string, decimal) @@ -892,7 +892,7 @@ references: nameWithType.vb: PrimaryConstructors.CheckAccount.New(String, String, Decimal) - uid: CSharp12.PrimaryConstructors.CheckAccount.#ctor* name: CheckAccount - href: api/CSharp12.PrimaryConstructors.CheckAccount.html#CSharp12_PrimaryConstructors_CheckAccount__ctor_ + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: Overload:CSharp12.PrimaryConstructors.CheckAccount.#ctor isSpec: "True" name.vb: New @@ -902,20 +902,20 @@ references: nameWithType.vb: PrimaryConstructors.CheckAccount.New - uid: CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance name: CurrentBalance - href: api/CSharp12.PrimaryConstructors.CheckAccount.html#CSharp12_PrimaryConstructors_CheckAccount_CurrentBalance + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: P:CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance fullName: CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance nameWithType: PrimaryConstructors.CheckAccount.CurrentBalance - uid: CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance* name: CurrentBalance - href: api/CSharp12.PrimaryConstructors.CheckAccount.html#CSharp12_PrimaryConstructors_CheckAccount_CurrentBalance_ + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: Overload:CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance isSpec: "True" fullName: CSharp12.PrimaryConstructors.CheckAccount.CurrentBalance nameWithType: PrimaryConstructors.CheckAccount.CurrentBalance - uid: CSharp12.PrimaryConstructors.CheckAccount.Deposit(System.Decimal) name: Deposit(decimal) - href: api/CSharp12.PrimaryConstructors.CheckAccount.html#CSharp12_PrimaryConstructors_CheckAccount_Deposit_System_Decimal_ + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: M:CSharp12.PrimaryConstructors.CheckAccount.Deposit(System.Decimal) name.vb: Deposit(Decimal) fullName: CSharp12.PrimaryConstructors.CheckAccount.Deposit(decimal) @@ -924,27 +924,27 @@ references: nameWithType.vb: PrimaryConstructors.CheckAccount.Deposit(Decimal) - uid: CSharp12.PrimaryConstructors.CheckAccount.Deposit* name: Deposit - href: api/CSharp12.PrimaryConstructors.CheckAccount.html#CSharp12_PrimaryConstructors_CheckAccount_Deposit_ + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: Overload:CSharp12.PrimaryConstructors.CheckAccount.Deposit isSpec: "True" fullName: CSharp12.PrimaryConstructors.CheckAccount.Deposit nameWithType: PrimaryConstructors.CheckAccount.Deposit - uid: CSharp12.PrimaryConstructors.CheckAccount.ToString name: ToString() - href: api/CSharp12.PrimaryConstructors.CheckAccount.html#CSharp12_PrimaryConstructors_CheckAccount_ToString + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: M:CSharp12.PrimaryConstructors.CheckAccount.ToString fullName: CSharp12.PrimaryConstructors.CheckAccount.ToString() nameWithType: PrimaryConstructors.CheckAccount.ToString() - uid: CSharp12.PrimaryConstructors.CheckAccount.ToString* name: ToString - href: api/CSharp12.PrimaryConstructors.CheckAccount.html#CSharp12_PrimaryConstructors_CheckAccount_ToString_ + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: Overload:CSharp12.PrimaryConstructors.CheckAccount.ToString isSpec: "True" fullName: CSharp12.PrimaryConstructors.CheckAccount.ToString nameWithType: PrimaryConstructors.CheckAccount.ToString - uid: CSharp12.PrimaryConstructors.CheckAccount.Withdrawal(System.Decimal) name: Withdrawal(decimal) - href: api/CSharp12.PrimaryConstructors.CheckAccount.html#CSharp12_PrimaryConstructors_CheckAccount_Withdrawal_System_Decimal_ + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: M:CSharp12.PrimaryConstructors.CheckAccount.Withdrawal(System.Decimal) name.vb: Withdrawal(Decimal) fullName: CSharp12.PrimaryConstructors.CheckAccount.Withdrawal(decimal) @@ -953,20 +953,20 @@ references: nameWithType.vb: PrimaryConstructors.CheckAccount.Withdrawal(Decimal) - uid: CSharp12.PrimaryConstructors.CheckAccount.Withdrawal* name: Withdrawal - href: api/CSharp12.PrimaryConstructors.CheckAccount.html#CSharp12_PrimaryConstructors_CheckAccount_Withdrawal_ + href: api/CSharp12.PrimaryConstructors.CheckAccount.yml commentId: Overload:CSharp12.PrimaryConstructors.CheckAccount.Withdrawal isSpec: "True" fullName: CSharp12.PrimaryConstructors.CheckAccount.Withdrawal nameWithType: PrimaryConstructors.CheckAccount.Withdrawal - uid: CSharp12.PrimaryConstructors.Distance name: PrimaryConstructors.Distance - href: api/CSharp12.PrimaryConstructors.Distance.html + href: api/CSharp12.PrimaryConstructors.Distance.yml commentId: T:CSharp12.PrimaryConstructors.Distance fullName: CSharp12.PrimaryConstructors.Distance nameWithType: PrimaryConstructors.Distance - uid: CSharp12.PrimaryConstructors.Distance.#ctor(System.Double,System.Double) name: Distance(double, double) - href: api/CSharp12.PrimaryConstructors.Distance.html#CSharp12_PrimaryConstructors_Distance__ctor_System_Double_System_Double_ + href: api/CSharp12.PrimaryConstructors.Distance.yml commentId: M:CSharp12.PrimaryConstructors.Distance.#ctor(System.Double,System.Double) name.vb: New(Double, Double) fullName: CSharp12.PrimaryConstructors.Distance.Distance(double, double) @@ -975,7 +975,7 @@ references: nameWithType.vb: PrimaryConstructors.Distance.New(Double, Double) - uid: CSharp12.PrimaryConstructors.Distance.#ctor* name: Distance - href: api/CSharp12.PrimaryConstructors.Distance.html#CSharp12_PrimaryConstructors_Distance__ctor_ + href: api/CSharp12.PrimaryConstructors.Distance.yml commentId: Overload:CSharp12.PrimaryConstructors.Distance.#ctor isSpec: "True" name.vb: New @@ -985,25 +985,25 @@ references: nameWithType.vb: PrimaryConstructors.Distance.New - uid: CSharp12.PrimaryConstructors.Distance.Direction name: Direction - href: api/CSharp12.PrimaryConstructors.Distance.html#CSharp12_PrimaryConstructors_Distance_Direction + href: api/CSharp12.PrimaryConstructors.Distance.yml commentId: F:CSharp12.PrimaryConstructors.Distance.Direction fullName: CSharp12.PrimaryConstructors.Distance.Direction nameWithType: PrimaryConstructors.Distance.Direction - uid: CSharp12.PrimaryConstructors.Distance.Magnitude name: Magnitude - href: api/CSharp12.PrimaryConstructors.Distance.html#CSharp12_PrimaryConstructors_Distance_Magnitude + href: api/CSharp12.PrimaryConstructors.Distance.yml commentId: F:CSharp12.PrimaryConstructors.Distance.Magnitude fullName: CSharp12.PrimaryConstructors.Distance.Magnitude nameWithType: PrimaryConstructors.Distance.Magnitude - uid: CSharp12.RefReadOnlyParameters name: RefReadOnlyParameters - href: api/CSharp12.RefReadOnlyParameters.html + href: api/CSharp12.RefReadOnlyParameters.yml commentId: T:CSharp12.RefReadOnlyParameters fullName: CSharp12.RefReadOnlyParameters nameWithType: RefReadOnlyParameters - uid: CSharp12.RefReadOnlyParameters.Foo(System.Int32@) name: Foo(ref readonly int) - href: api/CSharp12.RefReadOnlyParameters.html#CSharp12_RefReadOnlyParameters_Foo_System_Int32__ + href: api/CSharp12.RefReadOnlyParameters.yml commentId: M:CSharp12.RefReadOnlyParameters.Foo(System.Int32@) name.vb: Foo(Integer) fullName: CSharp12.RefReadOnlyParameters.Foo(ref readonly int) @@ -1012,89 +1012,89 @@ references: nameWithType.vb: RefReadOnlyParameters.Foo(Integer) - uid: CSharp12.RefReadOnlyParameters.Foo* name: Foo - href: api/CSharp12.RefReadOnlyParameters.html#CSharp12_RefReadOnlyParameters_Foo_ + href: api/CSharp12.RefReadOnlyParameters.yml commentId: Overload:CSharp12.RefReadOnlyParameters.Foo isSpec: "True" fullName: CSharp12.RefReadOnlyParameters.Foo nameWithType: RefReadOnlyParameters.Foo - uid: CSharp8 name: CSharp8 - href: api/CSharp8.html + href: api/CSharp8.yml commentId: N:CSharp8 fullName: CSharp8 nameWithType: CSharp8 - uid: CSharp8.DefaultInterfaceMembers name: DefaultInterfaceMembers - href: api/CSharp8.DefaultInterfaceMembers.html + href: api/CSharp8.DefaultInterfaceMembers.yml commentId: T:CSharp8.DefaultInterfaceMembers fullName: CSharp8.DefaultInterfaceMembers nameWithType: DefaultInterfaceMembers - uid: CSharp8.DefaultInterfaceMembers.DoSomething name: DoSomething() - href: api/CSharp8.DefaultInterfaceMembers.html#CSharp8_DefaultInterfaceMembers_DoSomething + href: api/CSharp8.DefaultInterfaceMembers.yml commentId: M:CSharp8.DefaultInterfaceMembers.DoSomething fullName: CSharp8.DefaultInterfaceMembers.DoSomething() nameWithType: DefaultInterfaceMembers.DoSomething() - uid: CSharp8.DefaultInterfaceMembers.DoSomething* name: DoSomething - href: api/CSharp8.DefaultInterfaceMembers.html#CSharp8_DefaultInterfaceMembers_DoSomething_ + href: api/CSharp8.DefaultInterfaceMembers.yml commentId: Overload:CSharp8.DefaultInterfaceMembers.DoSomething isSpec: "True" fullName: CSharp8.DefaultInterfaceMembers.DoSomething nameWithType: DefaultInterfaceMembers.DoSomething - uid: CSharp8.DefaultInterfaceMembers.DoSomethingElse name: DoSomethingElse() - href: api/CSharp8.DefaultInterfaceMembers.html#CSharp8_DefaultInterfaceMembers_DoSomethingElse + href: api/CSharp8.DefaultInterfaceMembers.yml commentId: M:CSharp8.DefaultInterfaceMembers.DoSomethingElse fullName: CSharp8.DefaultInterfaceMembers.DoSomethingElse() nameWithType: DefaultInterfaceMembers.DoSomethingElse() - uid: CSharp8.DefaultInterfaceMembers.DoSomethingElse* name: DoSomethingElse - href: api/CSharp8.DefaultInterfaceMembers.html#CSharp8_DefaultInterfaceMembers_DoSomethingElse_ + href: api/CSharp8.DefaultInterfaceMembers.yml commentId: Overload:CSharp8.DefaultInterfaceMembers.DoSomethingElse isSpec: "True" fullName: CSharp8.DefaultInterfaceMembers.DoSomethingElse nameWithType: DefaultInterfaceMembers.DoSomethingElse - uid: CSharp8.DefaultInterfaceMembers.GravitationalConstant name: GravitationalConstant - href: api/CSharp8.DefaultInterfaceMembers.html#CSharp8_DefaultInterfaceMembers_GravitationalConstant + href: api/CSharp8.DefaultInterfaceMembers.yml commentId: F:CSharp8.DefaultInterfaceMembers.GravitationalConstant fullName: CSharp8.DefaultInterfaceMembers.GravitationalConstant nameWithType: DefaultInterfaceMembers.GravitationalConstant - uid: CSharp8.DefaultInterfaceMembers.IA name: DefaultInterfaceMembers.IA - href: api/CSharp8.DefaultInterfaceMembers.IA.html + href: api/CSharp8.DefaultInterfaceMembers.IA.yml commentId: T:CSharp8.DefaultInterfaceMembers.IA fullName: CSharp8.DefaultInterfaceMembers.IA nameWithType: DefaultInterfaceMembers.IA - uid: CSharp8.DefaultInterfaceMembers.IA.M name: M() - href: api/CSharp8.DefaultInterfaceMembers.IA.html#CSharp8_DefaultInterfaceMembers_IA_M + href: api/CSharp8.DefaultInterfaceMembers.IA.yml commentId: M:CSharp8.DefaultInterfaceMembers.IA.M fullName: CSharp8.DefaultInterfaceMembers.IA.M() nameWithType: DefaultInterfaceMembers.IA.M() - uid: CSharp8.DefaultInterfaceMembers.IA.M* name: M - href: api/CSharp8.DefaultInterfaceMembers.IA.html#CSharp8_DefaultInterfaceMembers_IA_M_ + href: api/CSharp8.DefaultInterfaceMembers.IA.yml commentId: Overload:CSharp8.DefaultInterfaceMembers.IA.M isSpec: "True" fullName: CSharp8.DefaultInterfaceMembers.IA.M nameWithType: DefaultInterfaceMembers.IA.M - uid: CSharp8.DefaultInterfaceMembers.Nested name: DefaultInterfaceMembers.Nested - href: api/CSharp8.DefaultInterfaceMembers.Nested.html + href: api/CSharp8.DefaultInterfaceMembers.Nested.yml commentId: T:CSharp8.DefaultInterfaceMembers.Nested fullName: CSharp8.DefaultInterfaceMembers.Nested nameWithType: DefaultInterfaceMembers.Nested - uid: CSharp8.DefaultInterfaceMembers.X name: X - href: api/CSharp8.DefaultInterfaceMembers.html#CSharp8_DefaultInterfaceMembers_X + href: api/CSharp8.DefaultInterfaceMembers.yml commentId: F:CSharp8.DefaultInterfaceMembers.X fullName: CSharp8.DefaultInterfaceMembers.X nameWithType: DefaultInterfaceMembers.X - uid: CSharp8.DefaultInterfaceMembers.op_UnaryPlus(CSharp8.DefaultInterfaceMembers) name: operator +(DefaultInterfaceMembers) - href: api/CSharp8.DefaultInterfaceMembers.html#CSharp8_DefaultInterfaceMembers_op_UnaryPlus_CSharp8_DefaultInterfaceMembers_ + href: api/CSharp8.DefaultInterfaceMembers.yml commentId: M:CSharp8.DefaultInterfaceMembers.op_UnaryPlus(CSharp8.DefaultInterfaceMembers) name.vb: +(DefaultInterfaceMembers) fullName: CSharp8.DefaultInterfaceMembers.operator +(CSharp8.DefaultInterfaceMembers) @@ -1103,7 +1103,7 @@ references: nameWithType.vb: DefaultInterfaceMembers.+(DefaultInterfaceMembers) - uid: CSharp8.DefaultInterfaceMembers.op_UnaryPlus* name: operator + - href: api/CSharp8.DefaultInterfaceMembers.html#CSharp8_DefaultInterfaceMembers_op_UnaryPlus_ + href: api/CSharp8.DefaultInterfaceMembers.yml commentId: Overload:CSharp8.DefaultInterfaceMembers.op_UnaryPlus isSpec: "True" name.vb: + @@ -1113,45 +1113,45 @@ references: nameWithType.vb: DefaultInterfaceMembers.+ - uid: CSharp8.DisposableRefStructs name: DisposableRefStructs - href: api/CSharp8.DisposableRefStructs.html + href: api/CSharp8.DisposableRefStructs.yml commentId: T:CSharp8.DisposableRefStructs fullName: CSharp8.DisposableRefStructs nameWithType: DisposableRefStructs - uid: CSharp8.DisposableRefStructs.Dispose name: Dispose() - href: api/CSharp8.DisposableRefStructs.html#CSharp8_DisposableRefStructs_Dispose + href: api/CSharp8.DisposableRefStructs.yml commentId: M:CSharp8.DisposableRefStructs.Dispose fullName: CSharp8.DisposableRefStructs.Dispose() nameWithType: DisposableRefStructs.Dispose() - uid: CSharp8.DisposableRefStructs.Dispose* name: Dispose - href: api/CSharp8.DisposableRefStructs.html#CSharp8_DisposableRefStructs_Dispose_ + href: api/CSharp8.DisposableRefStructs.yml commentId: Overload:CSharp8.DisposableRefStructs.Dispose isSpec: "True" fullName: CSharp8.DisposableRefStructs.Dispose nameWithType: DisposableRefStructs.Dispose - uid: CSharp8.DisposableRefStructs.DoSomething name: DoSomething() - href: api/CSharp8.DisposableRefStructs.html#CSharp8_DisposableRefStructs_DoSomething + href: api/CSharp8.DisposableRefStructs.yml commentId: M:CSharp8.DisposableRefStructs.DoSomething fullName: CSharp8.DisposableRefStructs.DoSomething() nameWithType: DisposableRefStructs.DoSomething() - uid: CSharp8.DisposableRefStructs.DoSomething* name: DoSomething - href: api/CSharp8.DisposableRefStructs.html#CSharp8_DisposableRefStructs_DoSomething_ + href: api/CSharp8.DisposableRefStructs.yml commentId: Overload:CSharp8.DisposableRefStructs.DoSomething isSpec: "True" fullName: CSharp8.DisposableRefStructs.DoSomething nameWithType: DisposableRefStructs.DoSomething - uid: CSharp8.Issue4007 name: Issue4007 - href: api/CSharp8.Issue4007.html + href: api/CSharp8.Issue4007.yml commentId: T:CSharp8.Issue4007 fullName: CSharp8.Issue4007 nameWithType: Issue4007 - uid: CSharp8.Issue4007.SomeMethod(System.Int32) name: SomeMethod(int) - href: api/CSharp8.Issue4007.html#CSharp8_Issue4007_SomeMethod_System_Int32_ + href: api/CSharp8.Issue4007.yml commentId: M:CSharp8.Issue4007.SomeMethod(System.Int32) name.vb: SomeMethod(Integer) fullName: CSharp8.Issue4007.SomeMethod(int) @@ -1160,72 +1160,72 @@ references: nameWithType.vb: Issue4007.SomeMethod(Integer) - uid: CSharp8.Issue4007.SomeMethod* name: SomeMethod - href: api/CSharp8.Issue4007.html#CSharp8_Issue4007_SomeMethod_ + href: api/CSharp8.Issue4007.yml commentId: Overload:CSharp8.Issue4007.SomeMethod isSpec: "True" fullName: CSharp8.Issue4007.SomeMethod nameWithType: Issue4007.SomeMethod - uid: CSharp8.Issue4007.SomeOtherMethod name: SomeOtherMethod() - href: api/CSharp8.Issue4007.html#CSharp8_Issue4007_SomeOtherMethod + href: api/CSharp8.Issue4007.yml commentId: M:CSharp8.Issue4007.SomeOtherMethod fullName: CSharp8.Issue4007.SomeOtherMethod() nameWithType: Issue4007.SomeOtherMethod() - uid: CSharp8.Issue4007.SomeOtherMethod* name: SomeOtherMethod - href: api/CSharp8.Issue4007.html#CSharp8_Issue4007_SomeOtherMethod_ + href: api/CSharp8.Issue4007.yml commentId: Overload:CSharp8.Issue4007.SomeOtherMethod isSpec: "True" fullName: CSharp8.Issue4007.SomeOtherMethod nameWithType: Issue4007.SomeOtherMethod - uid: CSharp8.Misc name: Misc - href: api/CSharp8.Misc.html + href: api/CSharp8.Misc.yml commentId: T:CSharp8.Misc fullName: CSharp8.Misc nameWithType: Misc - uid: CSharp8.Misc.AsynchronousStreams name: AsynchronousStreams() - href: api/CSharp8.Misc.html#CSharp8_Misc_AsynchronousStreams + href: api/CSharp8.Misc.yml commentId: M:CSharp8.Misc.AsynchronousStreams fullName: CSharp8.Misc.AsynchronousStreams() nameWithType: Misc.AsynchronousStreams() - uid: CSharp8.Misc.AsynchronousStreams* name: AsynchronousStreams - href: api/CSharp8.Misc.html#CSharp8_Misc_AsynchronousStreams_ + href: api/CSharp8.Misc.yml commentId: Overload:CSharp8.Misc.AsynchronousStreams isSpec: "True" fullName: CSharp8.Misc.AsynchronousStreams nameWithType: Misc.AsynchronousStreams - uid: CSharp8.Misc.GenerateSequence name: GenerateSequence() - href: api/CSharp8.Misc.html#CSharp8_Misc_GenerateSequence + href: api/CSharp8.Misc.yml commentId: M:CSharp8.Misc.GenerateSequence fullName: CSharp8.Misc.GenerateSequence() nameWithType: Misc.GenerateSequence() - uid: CSharp8.Misc.GenerateSequence* name: GenerateSequence - href: api/CSharp8.Misc.html#CSharp8_Misc_GenerateSequence_ + href: api/CSharp8.Misc.yml commentId: Overload:CSharp8.Misc.GenerateSequence isSpec: "True" fullName: CSharp8.Misc.GenerateSequence nameWithType: Misc.GenerateSequence - uid: CSharp8.Misc.IndicesAndRanges name: IndicesAndRanges() - href: api/CSharp8.Misc.html#CSharp8_Misc_IndicesAndRanges + href: api/CSharp8.Misc.yml commentId: M:CSharp8.Misc.IndicesAndRanges fullName: CSharp8.Misc.IndicesAndRanges() nameWithType: Misc.IndicesAndRanges() - uid: CSharp8.Misc.IndicesAndRanges* name: IndicesAndRanges - href: api/CSharp8.Misc.html#CSharp8_Misc_IndicesAndRanges_ + href: api/CSharp8.Misc.yml commentId: Overload:CSharp8.Misc.IndicesAndRanges isSpec: "True" fullName: CSharp8.Misc.IndicesAndRanges nameWithType: Misc.IndicesAndRanges - uid: CSharp8.Misc.IsExpression(System.DateTime) name: IsExpression(DateTime) - href: api/CSharp8.Misc.html#CSharp8_Misc_IsExpression_System_DateTime_ + href: api/CSharp8.Misc.yml commentId: M:CSharp8.Misc.IsExpression(System.DateTime) name.vb: IsExpression(Date) fullName: CSharp8.Misc.IsExpression(System.DateTime) @@ -1234,40 +1234,40 @@ references: nameWithType.vb: Misc.IsExpression(Date) - uid: CSharp8.Misc.IsExpression* name: IsExpression - href: api/CSharp8.Misc.html#CSharp8_Misc_IsExpression_ + href: api/CSharp8.Misc.yml commentId: Overload:CSharp8.Misc.IsExpression isSpec: "True" fullName: CSharp8.Misc.IsExpression nameWithType: Misc.IsExpression - uid: CSharp8.Misc.NullCoalescingAssignment name: NullCoalescingAssignment() - href: api/CSharp8.Misc.html#CSharp8_Misc_NullCoalescingAssignment + href: api/CSharp8.Misc.yml commentId: M:CSharp8.Misc.NullCoalescingAssignment fullName: CSharp8.Misc.NullCoalescingAssignment() nameWithType: Misc.NullCoalescingAssignment() - uid: CSharp8.Misc.NullCoalescingAssignment* name: NullCoalescingAssignment - href: api/CSharp8.Misc.html#CSharp8_Misc_NullCoalescingAssignment_ + href: api/CSharp8.Misc.yml commentId: Overload:CSharp8.Misc.NullCoalescingAssignment isSpec: "True" fullName: CSharp8.Misc.NullCoalescingAssignment nameWithType: Misc.NullCoalescingAssignment - uid: CSharp8.Misc.StackallocInNestedExpressions name: StackallocInNestedExpressions() - href: api/CSharp8.Misc.html#CSharp8_Misc_StackallocInNestedExpressions + href: api/CSharp8.Misc.yml commentId: M:CSharp8.Misc.StackallocInNestedExpressions fullName: CSharp8.Misc.StackallocInNestedExpressions() nameWithType: Misc.StackallocInNestedExpressions() - uid: CSharp8.Misc.StackallocInNestedExpressions* name: StackallocInNestedExpressions - href: api/CSharp8.Misc.html#CSharp8_Misc_StackallocInNestedExpressions_ + href: api/CSharp8.Misc.yml commentId: Overload:CSharp8.Misc.StackallocInNestedExpressions isSpec: "True" fullName: CSharp8.Misc.StackallocInNestedExpressions nameWithType: Misc.StackallocInNestedExpressions - uid: CSharp8.Misc.StaticLocalFunctions(System.Int32) name: StaticLocalFunctions(int) - href: api/CSharp8.Misc.html#CSharp8_Misc_StaticLocalFunctions_System_Int32_ + href: api/CSharp8.Misc.yml commentId: M:CSharp8.Misc.StaticLocalFunctions(System.Int32) name.vb: StaticLocalFunctions(Integer) fullName: CSharp8.Misc.StaticLocalFunctions(int) @@ -1276,46 +1276,46 @@ references: nameWithType.vb: Misc.StaticLocalFunctions(Integer) - uid: CSharp8.Misc.StaticLocalFunctions* name: StaticLocalFunctions - href: api/CSharp8.Misc.html#CSharp8_Misc_StaticLocalFunctions_ + href: api/CSharp8.Misc.yml commentId: Overload:CSharp8.Misc.StaticLocalFunctions isSpec: "True" fullName: CSharp8.Misc.StaticLocalFunctions nameWithType: Misc.StaticLocalFunctions - uid: CSharp8.Misc.SwitchExpression(System.ConsoleColor) name: SwitchExpression(ConsoleColor) - href: api/CSharp8.Misc.html#CSharp8_Misc_SwitchExpression_System_ConsoleColor_ + href: api/CSharp8.Misc.yml commentId: M:CSharp8.Misc.SwitchExpression(System.ConsoleColor) fullName: CSharp8.Misc.SwitchExpression(System.ConsoleColor) nameWithType: Misc.SwitchExpression(ConsoleColor) - uid: CSharp8.Misc.SwitchExpression* name: SwitchExpression - href: api/CSharp8.Misc.html#CSharp8_Misc_SwitchExpression_ + href: api/CSharp8.Misc.yml commentId: Overload:CSharp8.Misc.SwitchExpression isSpec: "True" fullName: CSharp8.Misc.SwitchExpression nameWithType: Misc.SwitchExpression - uid: CSharp8.Misc.UsingDeclaration name: UsingDeclaration() - href: api/CSharp8.Misc.html#CSharp8_Misc_UsingDeclaration + href: api/CSharp8.Misc.yml commentId: M:CSharp8.Misc.UsingDeclaration fullName: CSharp8.Misc.UsingDeclaration() nameWithType: Misc.UsingDeclaration() - uid: CSharp8.Misc.UsingDeclaration* name: UsingDeclaration - href: api/CSharp8.Misc.html#CSharp8_Misc_UsingDeclaration_ + href: api/CSharp8.Misc.yml commentId: Overload:CSharp8.Misc.UsingDeclaration isSpec: "True" fullName: CSharp8.Misc.UsingDeclaration nameWithType: Misc.UsingDeclaration - uid: CSharp8.NullableReferenceTypes name: NullableReferenceTypes - href: api/CSharp8.NullableReferenceTypes.html + href: api/CSharp8.NullableReferenceTypes.yml commentId: T:CSharp8.NullableReferenceTypes fullName: CSharp8.NullableReferenceTypes nameWithType: NullableReferenceTypes - uid: CSharp8.NullableReferenceTypes.DoSomething(System.Collections.Generic.List{System.String}) name: DoSomething(List?) - href: api/CSharp8.NullableReferenceTypes.html#CSharp8_NullableReferenceTypes_DoSomething_System_Collections_Generic_List_System_String__ + href: api/CSharp8.NullableReferenceTypes.yml commentId: M:CSharp8.NullableReferenceTypes.DoSomething(System.Collections.Generic.List{System.String}) name.vb: DoSomething(List(Of String)) fullName: CSharp8.NullableReferenceTypes.DoSomething(System.Collections.Generic.List?) @@ -1324,116 +1324,116 @@ references: nameWithType.vb: NullableReferenceTypes.DoSomething(List(Of String)) - uid: CSharp8.NullableReferenceTypes.DoSomething* name: DoSomething - href: api/CSharp8.NullableReferenceTypes.html#CSharp8_NullableReferenceTypes_DoSomething_ + href: api/CSharp8.NullableReferenceTypes.yml commentId: Overload:CSharp8.NullableReferenceTypes.DoSomething isSpec: "True" fullName: CSharp8.NullableReferenceTypes.DoSomething nameWithType: NullableReferenceTypes.DoSomething - uid: CSharp8.NullableReferenceTypes.Field name: Field - href: api/CSharp8.NullableReferenceTypes.html#CSharp8_NullableReferenceTypes_Field + href: api/CSharp8.NullableReferenceTypes.yml commentId: F:CSharp8.NullableReferenceTypes.Field fullName: CSharp8.NullableReferenceTypes.Field nameWithType: NullableReferenceTypes.Field - uid: CSharp8.NullableReferenceTypes.Property name: Property - href: api/CSharp8.NullableReferenceTypes.html#CSharp8_NullableReferenceTypes_Property + href: api/CSharp8.NullableReferenceTypes.yml commentId: P:CSharp8.NullableReferenceTypes.Property fullName: CSharp8.NullableReferenceTypes.Property nameWithType: NullableReferenceTypes.Property - uid: CSharp8.NullableReferenceTypes.Property* name: Property - href: api/CSharp8.NullableReferenceTypes.html#CSharp8_NullableReferenceTypes_Property_ + href: api/CSharp8.NullableReferenceTypes.yml commentId: Overload:CSharp8.NullableReferenceTypes.Property isSpec: "True" fullName: CSharp8.NullableReferenceTypes.Property nameWithType: NullableReferenceTypes.Property - uid: CSharp8.ReadOnlyMembers name: ReadOnlyMembers - href: api/CSharp8.ReadOnlyMembers.html + href: api/CSharp8.ReadOnlyMembers.yml commentId: T:CSharp8.ReadOnlyMembers fullName: CSharp8.ReadOnlyMembers nameWithType: ReadOnlyMembers - uid: CSharp8.ReadOnlyMembers.Counter name: Counter - href: api/CSharp8.ReadOnlyMembers.html#CSharp8_ReadOnlyMembers_Counter + href: api/CSharp8.ReadOnlyMembers.yml commentId: P:CSharp8.ReadOnlyMembers.Counter fullName: CSharp8.ReadOnlyMembers.Counter nameWithType: ReadOnlyMembers.Counter - uid: CSharp8.ReadOnlyMembers.Counter* name: Counter - href: api/CSharp8.ReadOnlyMembers.html#CSharp8_ReadOnlyMembers_Counter_ + href: api/CSharp8.ReadOnlyMembers.yml commentId: Overload:CSharp8.ReadOnlyMembers.Counter isSpec: "True" fullName: CSharp8.ReadOnlyMembers.Counter nameWithType: ReadOnlyMembers.Counter - uid: CSharp8.ReadOnlyMembers.Sum name: Sum() - href: api/CSharp8.ReadOnlyMembers.html#CSharp8_ReadOnlyMembers_Sum + href: api/CSharp8.ReadOnlyMembers.yml commentId: M:CSharp8.ReadOnlyMembers.Sum fullName: CSharp8.ReadOnlyMembers.Sum() nameWithType: ReadOnlyMembers.Sum() - uid: CSharp8.ReadOnlyMembers.Sum* name: Sum - href: api/CSharp8.ReadOnlyMembers.html#CSharp8_ReadOnlyMembers_Sum_ + href: api/CSharp8.ReadOnlyMembers.yml commentId: Overload:CSharp8.ReadOnlyMembers.Sum isSpec: "True" fullName: CSharp8.ReadOnlyMembers.Sum nameWithType: ReadOnlyMembers.Sum - uid: CSharp8.ReadOnlyMembers.ToString name: ToString() - href: api/CSharp8.ReadOnlyMembers.html#CSharp8_ReadOnlyMembers_ToString + href: api/CSharp8.ReadOnlyMembers.yml commentId: M:CSharp8.ReadOnlyMembers.ToString fullName: CSharp8.ReadOnlyMembers.ToString() nameWithType: ReadOnlyMembers.ToString() - uid: CSharp8.ReadOnlyMembers.ToString* name: ToString - href: api/CSharp8.ReadOnlyMembers.html#CSharp8_ReadOnlyMembers_ToString_ + href: api/CSharp8.ReadOnlyMembers.yml commentId: Overload:CSharp8.ReadOnlyMembers.ToString isSpec: "True" fullName: CSharp8.ReadOnlyMembers.ToString nameWithType: ReadOnlyMembers.ToString - uid: CSharp8.ReadOnlyMembers.X name: X - href: api/CSharp8.ReadOnlyMembers.html#CSharp8_ReadOnlyMembers_X + href: api/CSharp8.ReadOnlyMembers.yml commentId: P:CSharp8.ReadOnlyMembers.X fullName: CSharp8.ReadOnlyMembers.X nameWithType: ReadOnlyMembers.X - uid: CSharp8.ReadOnlyMembers.X* name: X - href: api/CSharp8.ReadOnlyMembers.html#CSharp8_ReadOnlyMembers_X_ + href: api/CSharp8.ReadOnlyMembers.yml commentId: Overload:CSharp8.ReadOnlyMembers.X isSpec: "True" fullName: CSharp8.ReadOnlyMembers.X nameWithType: ReadOnlyMembers.X - uid: CSharp8.ReadOnlyMembers.Y name: Y - href: api/CSharp8.ReadOnlyMembers.html#CSharp8_ReadOnlyMembers_Y + href: api/CSharp8.ReadOnlyMembers.yml commentId: P:CSharp8.ReadOnlyMembers.Y fullName: CSharp8.ReadOnlyMembers.Y nameWithType: ReadOnlyMembers.Y - uid: CSharp8.ReadOnlyMembers.Y* name: Y - href: api/CSharp8.ReadOnlyMembers.html#CSharp8_ReadOnlyMembers_Y_ + href: api/CSharp8.ReadOnlyMembers.yml commentId: Overload:CSharp8.ReadOnlyMembers.Y isSpec: "True" fullName: CSharp8.ReadOnlyMembers.Y nameWithType: ReadOnlyMembers.Y - uid: CSharp9 name: CSharp9 - href: api/CSharp9.html + href: api/CSharp9.yml commentId: N:CSharp9 fullName: CSharp9 nameWithType: CSharp9 - uid: CSharp9.FunctionPointers name: FunctionPointers - href: api/CSharp9.FunctionPointers.html + href: api/CSharp9.FunctionPointers.yml commentId: T:CSharp9.FunctionPointers fullName: CSharp9.FunctionPointers nameWithType: FunctionPointers - uid: CSharp9.FunctionPointers.Example(System.Action{System.Int32},,,,,) name: Example(Action, delegate*, delegate*, delegate* unmanaged, delegate* unmanaged[Cdecl], delegate* unmanaged[Stdcall, SuppressGCTransition]) - href: api/CSharp9.FunctionPointers.html#CSharp9_FunctionPointers_Example_System_Action_System_Int32_______ + href: api/CSharp9.FunctionPointers.yml commentId: M:CSharp9.FunctionPointers.Example(System.Action{System.Int32},,,,,) name.vb: Example(Action(Of Integer), , , , , ) fullName: CSharp9.FunctionPointers.Example(System.Action, delegate*, delegate*, delegate* unmanaged, delegate* unmanaged[Cdecl], delegate* unmanaged[Stdcall, SuppressGCTransition]) @@ -1442,89 +1442,89 @@ references: nameWithType.vb: FunctionPointers.Example(Action(Of Integer), , , , , ) - uid: CSharp9.FunctionPointers.Example* name: Example - href: api/CSharp9.FunctionPointers.html#CSharp9_FunctionPointers_Example_ + href: api/CSharp9.FunctionPointers.yml commentId: Overload:CSharp9.FunctionPointers.Example isSpec: "True" fullName: CSharp9.FunctionPointers.Example nameWithType: FunctionPointers.Example - uid: CSharp9.InitOnlySetters name: InitOnlySetters - href: api/CSharp9.InitOnlySetters.html + href: api/CSharp9.InitOnlySetters.yml commentId: T:CSharp9.InitOnlySetters fullName: CSharp9.InitOnlySetters nameWithType: InitOnlySetters - uid: CSharp9.InitOnlySetters.PressureInMillibars name: PressureInMillibars - href: api/CSharp9.InitOnlySetters.html#CSharp9_InitOnlySetters_PressureInMillibars + href: api/CSharp9.InitOnlySetters.yml commentId: P:CSharp9.InitOnlySetters.PressureInMillibars fullName: CSharp9.InitOnlySetters.PressureInMillibars nameWithType: InitOnlySetters.PressureInMillibars - uid: CSharp9.InitOnlySetters.PressureInMillibars* name: PressureInMillibars - href: api/CSharp9.InitOnlySetters.html#CSharp9_InitOnlySetters_PressureInMillibars_ + href: api/CSharp9.InitOnlySetters.yml commentId: Overload:CSharp9.InitOnlySetters.PressureInMillibars isSpec: "True" fullName: CSharp9.InitOnlySetters.PressureInMillibars nameWithType: InitOnlySetters.PressureInMillibars - uid: CSharp9.InitOnlySetters.RecordedAt name: RecordedAt - href: api/CSharp9.InitOnlySetters.html#CSharp9_InitOnlySetters_RecordedAt + href: api/CSharp9.InitOnlySetters.yml commentId: P:CSharp9.InitOnlySetters.RecordedAt fullName: CSharp9.InitOnlySetters.RecordedAt nameWithType: InitOnlySetters.RecordedAt - uid: CSharp9.InitOnlySetters.RecordedAt* name: RecordedAt - href: api/CSharp9.InitOnlySetters.html#CSharp9_InitOnlySetters_RecordedAt_ + href: api/CSharp9.InitOnlySetters.yml commentId: Overload:CSharp9.InitOnlySetters.RecordedAt isSpec: "True" fullName: CSharp9.InitOnlySetters.RecordedAt nameWithType: InitOnlySetters.RecordedAt - uid: CSharp9.InitOnlySetters.TemperatureInCelsius name: TemperatureInCelsius - href: api/CSharp9.InitOnlySetters.html#CSharp9_InitOnlySetters_TemperatureInCelsius + href: api/CSharp9.InitOnlySetters.yml commentId: P:CSharp9.InitOnlySetters.TemperatureInCelsius fullName: CSharp9.InitOnlySetters.TemperatureInCelsius nameWithType: InitOnlySetters.TemperatureInCelsius - uid: CSharp9.InitOnlySetters.TemperatureInCelsius* name: TemperatureInCelsius - href: api/CSharp9.InitOnlySetters.html#CSharp9_InitOnlySetters_TemperatureInCelsius_ + href: api/CSharp9.InitOnlySetters.yml commentId: Overload:CSharp9.InitOnlySetters.TemperatureInCelsius isSpec: "True" fullName: CSharp9.InitOnlySetters.TemperatureInCelsius nameWithType: InitOnlySetters.TemperatureInCelsius - uid: CSharp9.NativeSizedIntegers name: NativeSizedIntegers - href: api/CSharp9.NativeSizedIntegers.html + href: api/CSharp9.NativeSizedIntegers.yml commentId: T:CSharp9.NativeSizedIntegers fullName: CSharp9.NativeSizedIntegers nameWithType: NativeSizedIntegers - uid: CSharp9.NativeSizedIntegers.X name: X - href: api/CSharp9.NativeSizedIntegers.html#CSharp9_NativeSizedIntegers_X + href: api/CSharp9.NativeSizedIntegers.yml commentId: F:CSharp9.NativeSizedIntegers.X fullName: CSharp9.NativeSizedIntegers.X nameWithType: NativeSizedIntegers.X - uid: CSharp9.NativeSizedIntegers.Y name: Y - href: api/CSharp9.NativeSizedIntegers.html#CSharp9_NativeSizedIntegers_Y + href: api/CSharp9.NativeSizedIntegers.yml commentId: F:CSharp9.NativeSizedIntegers.Y fullName: CSharp9.NativeSizedIntegers.Y nameWithType: NativeSizedIntegers.Y - uid: CSharp9.RecordTypes name: RecordTypes - href: api/CSharp9.RecordTypes.html + href: api/CSharp9.RecordTypes.yml commentId: T:CSharp9.RecordTypes fullName: CSharp9.RecordTypes nameWithType: RecordTypes - uid: CSharp9.RecordTypes.Person name: RecordTypes.Person - href: api/CSharp9.RecordTypes.Person.html + href: api/CSharp9.RecordTypes.Person.yml commentId: T:CSharp9.RecordTypes.Person fullName: CSharp9.RecordTypes.Person nameWithType: RecordTypes.Person - uid: CSharp9.RecordTypes.Person.#ctor(System.String,System.String) name: Person(string, string) - href: api/CSharp9.RecordTypes.Person.html#CSharp9_RecordTypes_Person__ctor_System_String_System_String_ + href: api/CSharp9.RecordTypes.Person.yml commentId: M:CSharp9.RecordTypes.Person.#ctor(System.String,System.String) name.vb: New(String, String) fullName: CSharp9.RecordTypes.Person.Person(string, string) @@ -1533,7 +1533,7 @@ references: nameWithType.vb: RecordTypes.Person.New(String, String) - uid: CSharp9.RecordTypes.Person.#ctor* name: Person - href: api/CSharp9.RecordTypes.Person.html#CSharp9_RecordTypes_Person__ctor_ + href: api/CSharp9.RecordTypes.Person.yml commentId: Overload:CSharp9.RecordTypes.Person.#ctor isSpec: "True" name.vb: New @@ -1543,39 +1543,39 @@ references: nameWithType.vb: RecordTypes.Person.New - uid: CSharp9.RecordTypes.Person.FirstName name: FirstName - href: api/CSharp9.RecordTypes.Person.html#CSharp9_RecordTypes_Person_FirstName + href: api/CSharp9.RecordTypes.Person.yml commentId: P:CSharp9.RecordTypes.Person.FirstName fullName: CSharp9.RecordTypes.Person.FirstName nameWithType: RecordTypes.Person.FirstName - uid: CSharp9.RecordTypes.Person.FirstName* name: FirstName - href: api/CSharp9.RecordTypes.Person.html#CSharp9_RecordTypes_Person_FirstName_ + href: api/CSharp9.RecordTypes.Person.yml commentId: Overload:CSharp9.RecordTypes.Person.FirstName isSpec: "True" fullName: CSharp9.RecordTypes.Person.FirstName nameWithType: RecordTypes.Person.FirstName - uid: CSharp9.RecordTypes.Person.LastName name: LastName - href: api/CSharp9.RecordTypes.Person.html#CSharp9_RecordTypes_Person_LastName + href: api/CSharp9.RecordTypes.Person.yml commentId: P:CSharp9.RecordTypes.Person.LastName fullName: CSharp9.RecordTypes.Person.LastName nameWithType: RecordTypes.Person.LastName - uid: CSharp9.RecordTypes.Person.LastName* name: LastName - href: api/CSharp9.RecordTypes.Person.html#CSharp9_RecordTypes_Person_LastName_ + href: api/CSharp9.RecordTypes.Person.yml commentId: Overload:CSharp9.RecordTypes.Person.LastName isSpec: "True" fullName: CSharp9.RecordTypes.Person.LastName nameWithType: RecordTypes.Person.LastName - uid: CSharp9.RecordTypes.Teacher name: RecordTypes.Teacher - href: api/CSharp9.RecordTypes.Teacher.html + href: api/CSharp9.RecordTypes.Teacher.yml commentId: T:CSharp9.RecordTypes.Teacher fullName: CSharp9.RecordTypes.Teacher nameWithType: RecordTypes.Teacher - uid: CSharp9.RecordTypes.Teacher.#ctor(System.String,System.String,System.Int32) name: Teacher(string, string, int) - href: api/CSharp9.RecordTypes.Teacher.html#CSharp9_RecordTypes_Teacher__ctor_System_String_System_String_System_Int32_ + href: api/CSharp9.RecordTypes.Teacher.yml commentId: M:CSharp9.RecordTypes.Teacher.#ctor(System.String,System.String,System.Int32) name.vb: New(String, String, Integer) fullName: CSharp9.RecordTypes.Teacher.Teacher(string, string, int) @@ -1584,7 +1584,7 @@ references: nameWithType.vb: RecordTypes.Teacher.New(String, String, Integer) - uid: CSharp9.RecordTypes.Teacher.#ctor* name: Teacher - href: api/CSharp9.RecordTypes.Teacher.html#CSharp9_RecordTypes_Teacher__ctor_ + href: api/CSharp9.RecordTypes.Teacher.yml commentId: Overload:CSharp9.RecordTypes.Teacher.#ctor isSpec: "True" name.vb: New @@ -1594,13 +1594,13 @@ references: nameWithType.vb: RecordTypes.Teacher.New - uid: CSharp9.RecordTypes.Teacher.Grade name: Grade - href: api/CSharp9.RecordTypes.Teacher.html#CSharp9_RecordTypes_Teacher_Grade + href: api/CSharp9.RecordTypes.Teacher.yml commentId: P:CSharp9.RecordTypes.Teacher.Grade fullName: CSharp9.RecordTypes.Teacher.Grade nameWithType: RecordTypes.Teacher.Grade - uid: CSharp9.RecordTypes.Teacher.Grade* name: Grade - href: api/CSharp9.RecordTypes.Teacher.html#CSharp9_RecordTypes_Teacher_Grade_ + href: api/CSharp9.RecordTypes.Teacher.yml commentId: Overload:CSharp9.RecordTypes.Teacher.Grade isSpec: "True" fullName: CSharp9.RecordTypes.Teacher.Grade diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.Class1.html.view.verified.json deleted file mode 100644 index 6f11582a542..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.Class1.html.view.verified.json +++ /dev/null @@ -1,855 +0,0 @@ -{ - "uid": "BuildFromAssembly.Class1", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromAssembly", - "isEii": false, - "isExtensionMethod": false, - "isExternal": true, - "href": "BuildFromAssembly.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "BuildFromAssembly.Class1.#ctor", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromAssembly.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Class1()" - }, - { - "lang": "vb", - "value": "New()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Class1()" - }, - { - "lang": "vb", - "value": "Class1.New()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly.Class1.Class1()" - }, - { - "lang": "vb", - "value": "BuildFromAssembly.Class1.New()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Class1()" - }, - { - "lang": "vb", - "value": "Public Sub New()" - } - ] - }, - "source": { - "href": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", - "startLine": 0.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromAssembly" - ], - "namespace": "BuildFromAssembly", - "overload": { - "uid": "BuildFromAssembly.Class1.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Class1" - }, - { - "lang": "vb", - "value": "Class1.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly.Class1.Class1" - }, - { - "lang": "vb", - "value": "BuildFromAssembly.Class1.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromAssembly_Class1__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromAssembly_Class1__ctor", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromAssembly.Class1.HelloWorld", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromAssembly.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "HelloWorld()" - }, - { - "lang": "vb", - "value": "HelloWorld()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.HelloWorld()" - }, - { - "lang": "vb", - "value": "Class1.HelloWorld()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly.Class1.HelloWorld()" - }, - { - "lang": "vb", - "value": "BuildFromAssembly.Class1.HelloWorld()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void HelloWorld()" - }, - { - "lang": "vb", - "value": "Public Shared Sub HelloWorld()" - } - ] - }, - "source": { - "href": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", - "startLine": 0.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromAssembly" - ], - "namespace": "BuildFromAssembly", - "example": [], - "overload": { - "uid": "BuildFromAssembly.Class1.HelloWorld*", - "name": [ - { - "lang": "csharp", - "value": "HelloWorld" - }, - { - "lang": "vb", - "value": "HelloWorld" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.HelloWorld" - }, - { - "lang": "vb", - "value": "Class1.HelloWorld" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly.Class1.HelloWorld" - }, - { - "lang": "vb", - "value": "BuildFromAssembly.Class1.HelloWorld" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromAssembly_Class1_HelloWorld_" - }, - "level": 0.0, - "type": "method", - "summary": "

Hello World.

\n", - "platform": null, - "docurl": "", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromAssembly_Class1_HelloWorld", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly.Class1" - }, - { - "lang": "vb", - "value": "BuildFromAssembly.Class1" - } - ], - "type": "class", - "source": { - "href": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", - "startLine": 0.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromAssembly" - ], - "namespace": { - "uid": "BuildFromAssembly", - "isEii": false, - "isExtensionMethod": false, - "isExternal": true, - "href": "BuildFromAssembly.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

This is a test class.

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Class1" - }, - { - "lang": "vb", - "value": "Public Class Class1" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromAssembly.Class1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromAssembly.Class1.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", - "description": "This is a test class.", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromAssembly_Class1", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.Issue5432.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.Issue5432.html.view.verified.json deleted file mode 100644 index 60a61ea8689..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.Issue5432.html.view.verified.json +++ /dev/null @@ -1,667 +0,0 @@ -{ - "uid": "BuildFromAssembly.Issue5432", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromAssembly", - "isEii": false, - "isExtensionMethod": false, - "isExternal": true, - "href": "BuildFromAssembly.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "BuildFromAssembly.Issue5432.Name", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromAssembly.Issue5432", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Name" - }, - { - "lang": "vb", - "value": "Name" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue5432.Name" - }, - { - "lang": "vb", - "value": "Issue5432.Name" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly.Issue5432.Name" - }, - { - "lang": "vb", - "value": "BuildFromAssembly.Issue5432.Name" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string Name { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property Name As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "href": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", - "startLine": 0.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromAssembly" - ], - "namespace": "BuildFromAssembly", - "overload": { - "uid": "BuildFromAssembly.Issue5432.Name*", - "name": [ - { - "lang": "csharp", - "value": "Name" - }, - { - "lang": "vb", - "value": "Name" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue5432.Name" - }, - { - "lang": "vb", - "value": "Issue5432.Name" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly.Issue5432.Name" - }, - { - "lang": "vb", - "value": "BuildFromAssembly.Issue5432.Name" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromAssembly_Issue5432_Name_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromAssembly_Issue5432_Name", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Issue5432" - }, - { - "lang": "vb", - "value": "Issue5432" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue5432" - }, - { - "lang": "vb", - "value": "Issue5432" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly.Issue5432" - }, - { - "lang": "vb", - "value": "BuildFromAssembly.Issue5432" - } - ], - "type": "struct", - "source": { - "href": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", - "startLine": 0.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromAssembly" - ], - "namespace": { - "uid": "BuildFromAssembly", - "isEii": false, - "isExtensionMethod": false, - "isExternal": true, - "href": "BuildFromAssembly.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public struct Issue5432" - }, - { - "lang": "vb", - "value": "Public Structure Issue5432" - } - ] - }, - "level": 0.0, - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromAssembly.Issue5432.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromAssembly.Issue5432.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromAssembly_Issue5432", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.html.view.verified.json deleted file mode 100644 index 26aa7bfe56d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.html.view.verified.json +++ /dev/null @@ -1,217 +0,0 @@ -{ - "uid": "BuildFromAssembly", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "BuildFromAssembly.Class1", - "isExtensionMethod": false, - "isExternal": true, - "href": "BuildFromAssembly.Class1.html", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly.Class1" - }, - { - "lang": "vb", - "value": "BuildFromAssembly.Class1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

This is a test class.

\n", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromAssembly_Class1", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inStruct": true, - "typePropertyName": "inStruct", - "id": "structs", - "children": [ - { - "uid": "BuildFromAssembly.Issue5432", - "isExtensionMethod": false, - "isExternal": true, - "href": "BuildFromAssembly.Issue5432.html", - "name": [ - { - "lang": "csharp", - "value": "Issue5432" - }, - { - "lang": "vb", - "value": "Issue5432" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue5432" - }, - { - "lang": "vb", - "value": "Issue5432" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly.Issue5432" - }, - { - "lang": "vb", - "value": "BuildFromAssembly.Issue5432" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromAssembly_Issue5432", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromAssembly" - }, - { - "lang": "vb", - "value": "BuildFromAssembly" - } - ], - "type": "namespace", - "assemblies": [ - "BuildFromAssembly" - ], - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromAssembly.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromAssembly.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromAssembly", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromCSharpSourceCode.CSharp.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromCSharpSourceCode.CSharp.html.view.verified.json deleted file mode 100644 index 391a0e71fbc..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromCSharpSourceCode.CSharp.html.view.verified.json +++ /dev/null @@ -1,773 +0,0 @@ -{ - "uid": "BuildFromCSharpSourceCode.CSharp", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromCSharpSourceCode", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromCSharpSourceCode.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromCSharpSourceCode.CSharp.Main(System.String[])", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromCSharpSourceCode.CSharp", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Main(string[])" - }, - { - "lang": "vb", - "value": "Main(String())" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp.Main(string[])" - }, - { - "lang": "vb", - "value": "CSharp.Main(String())" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode.CSharp.Main(string[])" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode.CSharp.Main(String())" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void Main(string[] args)" - }, - { - "lang": "vb", - "value": "Public Shared Sub Main(args As String())" - } - ], - "parameters": [ - { - "id": "args", - "type": { - "uid": "System.String[]", - "name": [ - { - "lang": "csharp", - "value": "string[]" - }, - { - "lang": "vb", - "value": "String()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string[]" - }, - { - "lang": "vb", - "value": "String()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string[]" - }, - { - "lang": "vb", - "value": "String()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "string[]" - }, - { - "lang": "vb", - "value": "String()" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/csharp/CSharp.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Main", - "path": "dotnet/csharp/CSharp.cs", - "startLine": 9.0, - "endLine": 0.0 - }, - "namespace": "BuildFromCSharpSourceCode", - "overload": { - "uid": "BuildFromCSharpSourceCode.CSharp.Main*", - "name": [ - { - "lang": "csharp", - "value": "Main" - }, - { - "lang": "vb", - "value": "Main" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp.Main" - }, - { - "lang": "vb", - "value": "CSharp.Main" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode.CSharp.Main" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode.CSharp.Main" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromCSharpSourceCode_CSharp_Main_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromCSharpSourceCode_CSharp_Main_System_String___.md&value=---%0Auid%3A%20BuildFromCSharpSourceCode.CSharp.Main(System.String%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/csharp/CSharp.cs/#L10", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromCSharpSourceCode_CSharp_Main_System_String___", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CSharp" - }, - { - "lang": "vb", - "value": "CSharp" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp" - }, - { - "lang": "vb", - "value": "CSharp" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode.CSharp" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode.CSharp" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/csharp/CSharp.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "CSharp", - "path": "dotnet/csharp/CSharp.cs", - "startLine": 7.0, - "endLine": 0.0 - }, - "namespace": { - "uid": "BuildFromCSharpSourceCode", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromCSharpSourceCode.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class CSharp" - }, - { - "lang": "vb", - "value": "Public Class CSharp" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromCSharpSourceCode.CSharp.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromCSharpSourceCode.CSharp.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromCSharpSourceCode_CSharp.md&value=---%0Auid%3A%20BuildFromCSharpSourceCode.CSharp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/csharp/CSharp.cs/#L8", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromCSharpSourceCode_CSharp", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromCSharpSourceCode.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromCSharpSourceCode.html.view.verified.json deleted file mode 100644 index b7a766be7f9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromCSharpSourceCode.html.view.verified.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "uid": "BuildFromCSharpSourceCode", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "BuildFromCSharpSourceCode.CSharp", - "isExtensionMethod": false, - "href": "BuildFromCSharpSourceCode.CSharp.html", - "name": [ - { - "lang": "csharp", - "value": "CSharp" - }, - { - "lang": "vb", - "value": "CSharp" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CSharp" - }, - { - "lang": "vb", - "value": "CSharp" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode.CSharp" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode.CSharp" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromCSharpSourceCode_CSharp", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromCSharpSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromCSharpSourceCode" - } - ], - "type": "namespace", - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromCSharpSourceCode.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromCSharpSourceCode.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromCSharpSourceCode", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.IIssue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.IIssue8948.html.view.verified.json deleted file mode 100644 index 9012ed6467d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.IIssue8948.html.view.verified.json +++ /dev/null @@ -1,340 +0,0 @@ -{ - "uid": "BuildFromProject.Class1.IIssue8948", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.Class1.IIssue8948.DoNothing``1", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.IIssue8948", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "DoNothing()" - }, - { - "lang": "vb", - "value": "DoNothing(Of T)()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948.DoNothing()" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948.DoNothing(Of T)()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.IIssue8948.DoNothing()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.IIssue8948.DoNothing(Of T)()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "void DoNothing()" - }, - { - "lang": "vb", - "value": "Sub DoNothing(Of T)()" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "

A generic type.

\n" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "DoNothing", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 139.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Class1.IIssue8948.DoNothing*", - "name": [ - { - "lang": "csharp", - "value": "DoNothing" - }, - { - "lang": "vb", - "value": "DoNothing" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948.DoNothing" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948.DoNothing" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.IIssue8948.DoNothing" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.IIssue8948.DoNothing" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_IIssue8948_DoNothing_" - }, - "level": 0.0, - "type": "method", - "summary": "

Does nothing with generic type T.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_IIssue8948_DoNothing__1.md&value=---%0Auid%3A%20BuildFromProject.Class1.IIssue8948.DoNothing%60%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L140", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_IIssue8948_DoNothing__1", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.IIssue8948" - } - ], - "type": "interface", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "IIssue8948", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 133.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public interface Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "Public Interface Class1.IIssue8948" - } - ] - }, - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Class1.IIssue8948.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Class1.IIssue8948.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_IIssue8948.md&value=---%0Auid%3A%20BuildFromProject.Class1.IIssue8948%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L134", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_IIssue8948", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inInterface": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8665.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8665.html.view.verified.json deleted file mode 100644 index 22944257e87..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8665.html.view.verified.json +++ /dev/null @@ -1,1959 +0,0 @@ -{ - "uid": "BuildFromProject.Class1.Issue8665", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "BuildFromProject.Class1.Issue8665.#ctor", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue8665", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue8665()" - }, - { - "lang": "vb", - "value": "New()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Issue8665()" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.New()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Issue8665()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.New()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Issue8665()" - }, - { - "lang": "vb", - "value": "Public Sub New()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 111.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "overload": { - "uid": "BuildFromProject.Class1.Issue8665.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Issue8665" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Issue8665" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Issue8665" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue8665__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8665__ctor.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8665.%23ctor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L112", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8665__ctor", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue8665.#ctor(System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue8665", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue8665(int)" - }, - { - "lang": "vb", - "value": "New(Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Issue8665(int)" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.New(Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Issue8665(int)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.New(Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Issue8665(int foo)" - }, - { - "lang": "vb", - "value": "Public Sub New(foo As Integer)" - } - ], - "parameters": [ - { - "id": "foo", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 113.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "overload": { - "uid": "BuildFromProject.Class1.Issue8665.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Issue8665" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Issue8665" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Issue8665" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue8665__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8665__ctor_System_Int32_.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8665.%23ctor(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L114", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8665__ctor_System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue8665.#ctor(System.Int32,System.Char)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue8665", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue8665(int, char)" - }, - { - "lang": "vb", - "value": "New(Integer, Char)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Issue8665(int, char)" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.New(Integer, Char)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Issue8665(int, char)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.New(Integer, Char)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Issue8665(int foo, char bar)" - }, - { - "lang": "vb", - "value": "Public Sub New(foo As Integer, bar As Char)" - } - ], - "parameters": [ - { - "id": "foo", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "bar", - "type": { - "uid": "System.Char", - "name": [ - { - "lang": "csharp", - "value": "char" - }, - { - "lang": "vb", - "value": "Char" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "char" - }, - { - "lang": "vb", - "value": "Char" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "char" - }, - { - "lang": "vb", - "value": "Char" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 115.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "overload": { - "uid": "BuildFromProject.Class1.Issue8665.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Issue8665" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Issue8665" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Issue8665" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue8665__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8665__ctor_System_Int32_System_Char_.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8665.%23ctor(System.Int32%2CSystem.Char)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L116", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8665__ctor_System_Int32_System_Char_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue8665.#ctor(System.Int32,System.Char,System.String)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue8665", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue8665(int, char, string)" - }, - { - "lang": "vb", - "value": "New(Integer, Char, String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Issue8665(int, char, string)" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.New(Integer, Char, String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Issue8665(int, char, string)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.New(Integer, Char, String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Issue8665(int foo, char bar, string baz)" - }, - { - "lang": "vb", - "value": "Public Sub New(foo As Integer, bar As Char, baz As String)" - } - ], - "parameters": [ - { - "id": "foo", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "bar", - "type": { - "uid": "System.Char", - "name": [ - { - "lang": "csharp", - "value": "char" - }, - { - "lang": "vb", - "value": "Char" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "char" - }, - { - "lang": "vb", - "value": "Char" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "char" - }, - { - "lang": "vb", - "value": "Char" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "baz", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 117.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "overload": { - "uid": "BuildFromProject.Class1.Issue8665.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Issue8665" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Issue8665" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Issue8665" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue8665__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8665__ctor_System_Int32_System_Char_System_String_.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8665.%23ctor(System.Int32%2CSystem.Char%2CSystem.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L118", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8665__ctor_System_Int32_System_Char_System_String_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "BuildFromProject.Class1.Issue8665.Bar", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue8665", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Bar" - }, - { - "lang": "vb", - "value": "Bar" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Bar" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.Bar" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Bar" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.Bar" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public char Bar { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property Bar As Char" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Char", - "name": [ - { - "lang": "csharp", - "value": "char" - }, - { - "lang": "vb", - "value": "Char" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "char" - }, - { - "lang": "vb", - "value": "Char" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "char" - }, - { - "lang": "vb", - "value": "Char" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Bar", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 108.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "overload": { - "uid": "BuildFromProject.Class1.Issue8665.Bar*", - "name": [ - { - "lang": "csharp", - "value": "Bar" - }, - { - "lang": "vb", - "value": "Bar" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Bar" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.Bar" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Bar" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.Bar" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue8665_Bar_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8665_Bar.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8665.Bar%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L109", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8665_Bar", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue8665.Baz", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue8665", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Baz" - }, - { - "lang": "vb", - "value": "Baz" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Baz" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.Baz" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Baz" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.Baz" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string Baz { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property Baz As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Baz", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 109.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "overload": { - "uid": "BuildFromProject.Class1.Issue8665.Baz*", - "name": [ - { - "lang": "csharp", - "value": "Baz" - }, - { - "lang": "vb", - "value": "Baz" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Baz" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.Baz" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Baz" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.Baz" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue8665_Baz_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8665_Baz.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8665.Baz%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L110", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8665_Baz", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue8665.Foo", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue8665", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Foo" - }, - { - "lang": "vb", - "value": "Foo" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Foo" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.Foo" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Foo" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.Foo" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public int Foo { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property Foo As Integer" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Foo", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 107.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "overload": { - "uid": "BuildFromProject.Class1.Issue8665.Foo*", - "name": [ - { - "lang": "csharp", - "value": "Foo" - }, - { - "lang": "vb", - "value": "Foo" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665.Foo" - }, - { - "lang": "vb", - "value": "Class1.Issue8665.Foo" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665.Foo" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665.Foo" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue8665_Foo_" - }, - "level": 0.0, - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8665_Foo.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8665.Foo%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L108", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8665_Foo", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue8665" - }, - { - "lang": "vb", - "value": "Class1.Issue8665" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665" - }, - { - "lang": "vb", - "value": "Class1.Issue8665" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue8665", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 105.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Class1.Issue8665" - }, - { - "lang": "vb", - "value": "Public Class Class1.Issue8665" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Class1.Issue8665.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Class1.Issue8665.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8665.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8665%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L106", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8665", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json deleted file mode 100644 index b54ecc130b2..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json +++ /dev/null @@ -1,2774 +0,0 @@ -{ - "uid": "BuildFromProject.Class1.Issue8696Attribute", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "BuildFromProject.Class1.Issue8696Attribute.#ctor(System.String,System.Int32,System.Int32,System.String[],System.Boolean,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue8696Attribute", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue8696Attribute(string?, int, int, string[]?, bool, Type?)" - }, - { - "lang": "vb", - "value": "New(String, Integer, Integer, String(), Boolean, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8696Attribute.Issue8696Attribute(string?, int, int, string[]?, bool, Type?)" - }, - { - "lang": "vb", - "value": "Class1.Issue8696Attribute.New(String, Integer, Integer, String(), Boolean, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8696Attribute.Issue8696Attribute(string?, int, int, string[]?, bool, System.Type?)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8696Attribute.New(String, Integer, Integer, String(), Boolean, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "[Class1.Issue8696(\"Changes the name of the server in the server list\", 0, 0, null, false, null)]\npublic Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)" - }, - { - "lang": "vb", - "value": "\nPublic Sub New(description As String = Nothing, boundsMin As Integer = 0, boundsMax As Integer = 0, validGameModes As String() = Nothing, hasMultipleSelections As Boolean = False, enumType As Type = Nothing)" - } - ], - "parameters": [ - { - "id": "description", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "boundsMin", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "boundsMax", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "validGameModes", - "type": { - "uid": "System.String[]", - "name": [ - { - "lang": "csharp", - "value": "string[]" - }, - { - "lang": "vb", - "value": "String()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string[]" - }, - { - "lang": "vb", - "value": "String()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string[]" - }, - { - "lang": "vb", - "value": "String()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "string[]" - }, - { - "lang": "vb", - "value": "String()" - } - ] - } - }, - { - "id": "hasMultipleSelections", - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - }, - { - "id": "enumType", - "type": { - "uid": "System.Type", - "name": [ - { - "lang": "csharp", - "value": "Type" - }, - { - "lang": "vb", - "value": "Type" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Type" - }, - { - "lang": "vb", - "value": "Type" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Type" - }, - { - "lang": "vb", - "value": "System.Type" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 127.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "overload": { - "uid": "BuildFromProject.Class1.Issue8696Attribute.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Issue8696Attribute" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8696Attribute.Issue8696Attribute" - }, - { - "lang": "vb", - "value": "Class1.Issue8696Attribute.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8696Attribute.Issue8696Attribute" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8696Attribute.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue8696Attribute__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8696Attribute__ctor_System_String_System_Int32_System_Int32_System_String___System_Boolean_System_Type_.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8696Attribute.%23ctor(System.String%2CSystem.Int32%2CSystem.Int32%2CSystem.String%5B%5D%2CSystem.Boolean%2CSystem.Type)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L128", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8696Attribute__ctor_System_String_System_Int32_System_Int32_System_String___System_Boolean_System_Type_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue8696Attribute" - }, - { - "lang": "vb", - "value": "Class1.Issue8696Attribute" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8696Attribute" - }, - { - "lang": "vb", - "value": "Class1.Issue8696Attribute" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8696Attribute" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8696Attribute" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue8696Attribute", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 125.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Class1.Issue8696Attribute : Attribute" - }, - { - "lang": "vb", - "value": "Public Class Class1.Issue8696Attribute Inherits Attribute" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - }, - { - "uid": "System.Attribute", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute", - "name": [ - { - "lang": "csharp", - "value": "Attribute" - }, - { - "lang": "vb", - "value": "Attribute" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute" - }, - { - "lang": "vb", - "value": "Attribute" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute" - }, - { - "lang": "vb", - "value": "System.Attribute" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 1.0 - } - ], - "level": 2.0, - "inheritedMembers": [ - { - "uid": "System.Attribute.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.Equals(object)" - }, - { - "lang": "vb", - "value": "Attribute.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.Equals(object)" - }, - { - "lang": "vb", - "value": "System.Attribute.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(Assembly, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(Assembly, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttribute(Assembly, Type)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttribute(Assembly, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(Assembly, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(Assembly, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(Assembly, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(Assembly, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttribute(Assembly, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttribute(Assembly, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(Assembly, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(Assembly, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(MemberInfo, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(MemberInfo, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttribute(MemberInfo, Type)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttribute(MemberInfo, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(MemberInfo, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(MemberInfo, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(MemberInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(MemberInfo, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttribute(MemberInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttribute(MemberInfo, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(MemberInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(MemberInfo, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(Module, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(Module, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttribute(Module, Type)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttribute(Module, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(Module, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(Module, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(Module, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(Module, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttribute(Module, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttribute(Module, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(Module, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(Module, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(ParameterInfo, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(ParameterInfo, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttribute(ParameterInfo, Type)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttribute(ParameterInfo, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(ParameterInfo, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(ParameterInfo, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(ParameterInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(ParameterInfo, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttribute(ParameterInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttribute(ParameterInfo, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttribute(ParameterInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttribute(ParameterInfo, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Assembly)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Assembly)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(Assembly)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(Assembly)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Assembly)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Assembly)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Assembly, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Assembly, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(Assembly, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(Assembly, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Assembly, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Assembly, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Assembly, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Assembly, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(Assembly, Type)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(Assembly, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Assembly, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Assembly, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Assembly, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Assembly, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(Assembly, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(Assembly, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Assembly, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Assembly, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(MemberInfo)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(MemberInfo)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(MemberInfo)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(MemberInfo)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(MemberInfo)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(MemberInfo)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(MemberInfo, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(MemberInfo, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(MemberInfo, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(MemberInfo, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(MemberInfo, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(MemberInfo, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(MemberInfo, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(MemberInfo, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(MemberInfo, Type)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(MemberInfo, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(MemberInfo, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(MemberInfo, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(MemberInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(MemberInfo, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(MemberInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(MemberInfo, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(MemberInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(MemberInfo, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.Module)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Module)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Module)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(Module)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(Module)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Module)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Module)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Module)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Module)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Module, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Module, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(Module, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(Module, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Module, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Module, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Module, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Module, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Module, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Module, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(Module, Type)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(Module, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Module, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Module, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Module, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Module, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(Module, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(Module, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(Module, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(Module, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(ParameterInfo)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(ParameterInfo)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(ParameterInfo)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(ParameterInfo)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(ParameterInfo)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(ParameterInfo)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(ParameterInfo, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(ParameterInfo, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(ParameterInfo, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(ParameterInfo, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(ParameterInfo, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(ParameterInfo, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(ParameterInfo, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(ParameterInfo, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(ParameterInfo, Type)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(ParameterInfo, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(ParameterInfo, Type)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(ParameterInfo, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(ParameterInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(ParameterInfo, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetCustomAttributes(ParameterInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.GetCustomAttributes(ParameterInfo, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetCustomAttributes(ParameterInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "GetCustomAttributes(ParameterInfo, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.GetHashCode()" - }, - { - "lang": "vb", - "value": "Attribute.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.Attribute.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.IsDefaultAttribute", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute", - "name": [ - { - "lang": "csharp", - "value": "IsDefaultAttribute()" - }, - { - "lang": "vb", - "value": "IsDefaultAttribute()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.IsDefaultAttribute()" - }, - { - "lang": "vb", - "value": "Attribute.IsDefaultAttribute()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.IsDefaultAttribute()" - }, - { - "lang": "vb", - "value": "System.Attribute.IsDefaultAttribute()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IsDefaultAttribute()" - }, - { - "lang": "vb", - "value": "IsDefaultAttribute()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.IsDefined(System.Reflection.Assembly,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)", - "name": [ - { - "lang": "csharp", - "value": "IsDefined(Assembly, Type)" - }, - { - "lang": "vb", - "value": "IsDefined(Assembly, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.IsDefined(Assembly, Type)" - }, - { - "lang": "vb", - "value": "Attribute.IsDefined(Assembly, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.IsDefined(System.Reflection.Assembly, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.IsDefined(System.Reflection.Assembly, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IsDefined(Assembly, Type)" - }, - { - "lang": "vb", - "value": "IsDefined(Assembly, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "IsDefined(Assembly, Type, bool)" - }, - { - "lang": "vb", - "value": "IsDefined(Assembly, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.IsDefined(Assembly, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.IsDefined(Assembly, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IsDefined(Assembly, Type, bool)" - }, - { - "lang": "vb", - "value": "IsDefined(Assembly, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)", - "name": [ - { - "lang": "csharp", - "value": "IsDefined(MemberInfo, Type)" - }, - { - "lang": "vb", - "value": "IsDefined(MemberInfo, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.IsDefined(MemberInfo, Type)" - }, - { - "lang": "vb", - "value": "Attribute.IsDefined(MemberInfo, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IsDefined(MemberInfo, Type)" - }, - { - "lang": "vb", - "value": "IsDefined(MemberInfo, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "IsDefined(MemberInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "IsDefined(MemberInfo, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.IsDefined(MemberInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.IsDefined(MemberInfo, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IsDefined(MemberInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "IsDefined(MemberInfo, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.IsDefined(System.Reflection.Module,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)", - "name": [ - { - "lang": "csharp", - "value": "IsDefined(Module, Type)" - }, - { - "lang": "vb", - "value": "IsDefined(Module, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.IsDefined(Module, Type)" - }, - { - "lang": "vb", - "value": "Attribute.IsDefined(Module, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.IsDefined(System.Reflection.Module, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.IsDefined(System.Reflection.Module, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IsDefined(Module, Type)" - }, - { - "lang": "vb", - "value": "IsDefined(Module, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "IsDefined(Module, Type, bool)" - }, - { - "lang": "vb", - "value": "IsDefined(Module, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.IsDefined(Module, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.IsDefined(Module, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.IsDefined(System.Reflection.Module, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.IsDefined(System.Reflection.Module, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IsDefined(Module, Type, bool)" - }, - { - "lang": "vb", - "value": "IsDefined(Module, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)", - "name": [ - { - "lang": "csharp", - "value": "IsDefined(ParameterInfo, Type)" - }, - { - "lang": "vb", - "value": "IsDefined(ParameterInfo, Type)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.IsDefined(ParameterInfo, Type)" - }, - { - "lang": "vb", - "value": "Attribute.IsDefined(ParameterInfo, Type)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type)" - }, - { - "lang": "vb", - "value": "System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IsDefined(ParameterInfo, Type)" - }, - { - "lang": "vb", - "value": "IsDefined(ParameterInfo, Type)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)", - "name": [ - { - "lang": "csharp", - "value": "IsDefined(ParameterInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "IsDefined(ParameterInfo, Type, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.IsDefined(ParameterInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "Attribute.IsDefined(ParameterInfo, Type, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, bool)" - }, - { - "lang": "vb", - "value": "System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "IsDefined(ParameterInfo, Type, bool)" - }, - { - "lang": "vb", - "value": "IsDefined(ParameterInfo, Type, Boolean)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.Match(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.match", - "name": [ - { - "lang": "csharp", - "value": "Match(object)" - }, - { - "lang": "vb", - "value": "Match(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.Match(object)" - }, - { - "lang": "vb", - "value": "Attribute.Match(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.Match(object)" - }, - { - "lang": "vb", - "value": "System.Attribute.Match(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Match(object)" - }, - { - "lang": "vb", - "value": "Match(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Attribute.TypeId", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Attribute", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid", - "name": [ - { - "lang": "csharp", - "value": "TypeId" - }, - { - "lang": "vb", - "value": "TypeId" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Attribute.TypeId" - }, - { - "lang": "vb", - "value": "Attribute.TypeId" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Attribute.TypeId" - }, - { - "lang": "vb", - "value": "System.Attribute.TypeId" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Class1.Issue8696Attribute.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Class1.Issue8696Attribute.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8696Attribute.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8696Attribute%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L126", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8696Attribute", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8948.html.view.verified.json deleted file mode 100644 index d41e2fd1752..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8948.html.view.verified.json +++ /dev/null @@ -1,825 +0,0 @@ -{ - "uid": "BuildFromProject.Class1.Issue8948", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.Class1.Issue8948.DoNothing``1", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue8948", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "DoNothing()" - }, - { - "lang": "vb", - "value": "DoNothing(Of T)()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8948.DoNothing()" - }, - { - "lang": "vb", - "value": "Class1.Issue8948.DoNothing(Of T)()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8948.DoNothing()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8948.DoNothing(Of T)()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void DoNothing()" - }, - { - "lang": "vb", - "value": "Public Sub DoNothing(Of T)()" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "

A generic type.

\n" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "DoNothing", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 145.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Class1.Issue8948.DoNothing*", - "name": [ - { - "lang": "csharp", - "value": "DoNothing" - }, - { - "lang": "vb", - "value": "DoNothing" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8948.DoNothing" - }, - { - "lang": "vb", - "value": "Class1.Issue8948.DoNothing" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8948.DoNothing" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8948.DoNothing" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue8948_DoNothing_" - }, - "level": 0.0, - "implements": [ - { - "uid": "BuildFromProject.Class1.IIssue8948.DoNothing``1", - "name": [ - { - "lang": "csharp", - "value": "DoNothing()" - }, - { - "lang": "vb", - "value": "DoNothing(Of T)()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948.DoNothing()" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948.DoNothing(Of T)()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.IIssue8948.DoNothing()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.IIssue8948.DoNothing(Of T)()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "DoNothing<T>()" - }, - { - "lang": "vb", - "value": "DoNothing(Of T)()" - } - ] - } - ], - "type": "method", - "summary": "

Does nothing with generic type T.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8948_DoNothing__1.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8948.DoNothing%60%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L146", - "description": "", - "remarks": "", - "conceptual": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8948_DoNothing__1", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue8948" - }, - { - "lang": "vb", - "value": "Class1.Issue8948" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8948" - }, - { - "lang": "vb", - "value": "Class1.Issue8948" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8948" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8948" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue8948", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 142.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Class1.Issue8948 : Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "Public Class Class1.Issue8948 Implements Class1.IIssue8948" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "implements": [ - { - "uid": "BuildFromProject.Class1.IIssue8948", - "name": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.IIssue8948" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Class1.Issue8948.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Class1.Issue8948.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8948.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8948%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L143", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8948", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue9260.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue9260.html.view.verified.json deleted file mode 100644 index 5d70683fef7..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue9260.html.view.verified.json +++ /dev/null @@ -1,626 +0,0 @@ -{ - "uid": "BuildFromProject.Class1.Issue9260", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "BuildFromProject.Class1.Issue9260.Value", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue9260", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Value" - }, - { - "lang": "vb", - "value": "Value" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue9260.Value" - }, - { - "lang": "vb", - "value": "Class1.Issue9260.Value" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue9260.Value" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue9260.Value" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "Value = 0" - }, - { - "lang": "vb", - "value": "Value = 0" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "BuildFromProject.Class1.Issue9260", - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue9260" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue9260" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Value", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 173.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "remarks": "

This is a remarks section. Very important remarks about Value go here.

\n", - "example": [], - "level": 0.0, - "type": "field", - "summary": "

This is a regular enum value.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue9260_Value.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue9260.Value%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L174", - "description": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue9260_Value", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue9260.OldAndUnusedValue", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue9260", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "OldAndUnusedValue" - }, - { - "lang": "vb", - "value": "OldAndUnusedValue" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue9260.OldAndUnusedValue" - }, - { - "lang": "vb", - "value": "Class1.Issue9260.OldAndUnusedValue" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue9260.OldAndUnusedValue" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue9260.OldAndUnusedValue" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "[Obsolete]\nOldAndUnusedValue = 1" - }, - { - "lang": "vb", - "value": "\nOldAndUnusedValue = 1" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "BuildFromProject.Class1.Issue9260", - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue9260" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue9260" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "OldAndUnusedValue", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 181.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "remarks": "

Don't use this, seriously! Use Value instead.

\n", - "example": [], - "level": 0.0, - "attributes": [ - { - "type": "System.ObsoleteAttribute", - "ctor": "System.ObsoleteAttribute.#ctor", - "arguments": [] - } - ], - "type": "field", - "summary": "

This is old and unused. You shouldn't use it anymore.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue9260_OldAndUnusedValue.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue9260.OldAndUnusedValue%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L182", - "description": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue9260_OldAndUnusedValue", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue9260.OldAndUnusedValue2", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1.Issue9260", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "OldAndUnusedValue2" - }, - { - "lang": "vb", - "value": "OldAndUnusedValue2" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue9260.OldAndUnusedValue2" - }, - { - "lang": "vb", - "value": "Class1.Issue9260.OldAndUnusedValue2" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue9260.OldAndUnusedValue2" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue9260.OldAndUnusedValue2" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "[Obsolete(\"Use Value\")]\nOldAndUnusedValue2 = 2" - }, - { - "lang": "vb", - "value": "\nOldAndUnusedValue2 = 2" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "BuildFromProject.Class1.Issue9260", - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue9260" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue9260" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "OldAndUnusedValue2", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 190.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "remarks": "

Don't use this, seriously! Use Value instead.

\n", - "example": [], - "level": 0.0, - "attributes": [ - { - "type": "System.ObsoleteAttribute", - "ctor": "System.ObsoleteAttribute.#ctor(System.String)", - "arguments": [ - { - "type": "System.String", - "value": "Use Value" - } - ] - } - ], - "type": "field", - "summary": "

This is old and unused. You shouldn't use it anymore.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue9260_OldAndUnusedValue2.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue9260.OldAndUnusedValue2%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L191", - "description": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue9260_OldAndUnusedValue2", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue9260" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue9260" - } - ], - "type": "enum", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue9260", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 165.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public enum Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Public Enum Class1.Issue9260" - } - ] - }, - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Class1.Issue9260.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Class1.Issue9260.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue9260.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue9260%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L166", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue9260", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": false, - "inEnum": true, - "isEnum": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Test-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Test-1.html.view.verified.json deleted file mode 100644 index 0b88184fc68..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Test-1.html.view.verified.json +++ /dev/null @@ -1,596 +0,0 @@ -{ - "uid": "BuildFromProject.Class1.Test`1", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Class1.Test" - }, - { - "lang": "vb", - "value": "Class1.Test(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Test" - }, - { - "lang": "vb", - "value": "Class1.Test(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Test" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Test(Of T)" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Test", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 5.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Class1.Test" - }, - { - "lang": "vb", - "value": "Public Class Class1.Test(Of T)" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Class1.Test-1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Class1.Test-1.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Test_1.md&value=---%0Auid%3A%20BuildFromProject.Class1.Test%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L6", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Test_1", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.html.view.verified.json deleted file mode 100644 index 1cfe6667fae..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.html.view.verified.json +++ /dev/null @@ -1,2299 +0,0 @@ -{ - "uid": "BuildFromProject.Class1", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.Class1.Issue1651", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue1651()" - }, - { - "lang": "vb", - "value": "Issue1651()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue1651()" - }, - { - "lang": "vb", - "value": "Class1.Issue1651()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue1651()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue1651()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue1651()" - }, - { - "lang": "vb", - "value": "Public Sub Issue1651()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue1651", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 32.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Class1.Issue1651*", - "name": [ - { - "lang": "csharp", - "value": "Issue1651" - }, - { - "lang": "vb", - "value": "Issue1651" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue1651" - }, - { - "lang": "vb", - "value": "Class1.Issue1651" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue1651" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue1651" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue1651_" - }, - "level": 0.0, - "type": "method", - "summary": "

Pricing models are used to calculate theoretical option values

\n
  • 1Black Scholes
  • 2Black76
  • 3Black76Fut
  • 4Equity Tree
  • 5Variance Swap
  • 6Dividend Forecast
\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue1651.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue1651%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L33", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue1651", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue1887", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue1887()" - }, - { - "lang": "vb", - "value": "Issue1887()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue1887()" - }, - { - "lang": "vb", - "value": "Class1.Issue1887()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue1887()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue1887()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue1887()" - }, - { - "lang": "vb", - "value": "Public Sub Issue1887()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue1887", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 151.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Class1.Issue1887*", - "name": [ - { - "lang": "csharp", - "value": "Issue1887" - }, - { - "lang": "vb", - "value": "Issue1887" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue1887" - }, - { - "lang": "vb", - "value": "Class1.Issue1887" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue1887" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue1887" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue1887_" - }, - "level": 0.0, - "type": "method", - "summary": "

IConfiguration related helper and extension routines.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue1887.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue1887%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L152", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue1887", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue2623", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue2623()" - }, - { - "lang": "vb", - "value": "Issue2623()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue2623()" - }, - { - "lang": "vb", - "value": "Class1.Issue2623()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue2623()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue2623()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue2623()" - }, - { - "lang": "vb", - "value": "Public Sub Issue2623()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue2623", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 77.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "remarks": "

For example:

\n
MyClass myClass = new MyClass();\n\nvoid Update()\n{\n    myClass.Execute();\n}\n
\n", - "example": [ - "
MyClass myClass = new MyClass();\n\nvoid Update()\n{\n    myClass.Execute();\n}\n
\n" - ], - "overload": { - "uid": "BuildFromProject.Class1.Issue2623*", - "name": [ - { - "lang": "csharp", - "value": "Issue2623" - }, - { - "lang": "vb", - "value": "Issue2623" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue2623" - }, - { - "lang": "vb", - "value": "Class1.Issue2623" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue2623" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue2623" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue2623_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue2623.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue2623%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L78", - "description": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue2623", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue2723", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue2723()" - }, - { - "lang": "vb", - "value": "Issue2723()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue2723()" - }, - { - "lang": "vb", - "value": "Class1.Issue2723()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue2723()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue2723()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue2723()" - }, - { - "lang": "vb", - "value": "Public Sub Issue2723()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue2723", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 96.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "remarks": "
\n
Note
\n

This is a <note>. & " '

\n
\n

Inline <angle brackets>.

\n

link

\n
for (var i = 0; i > 10; i++) // & " '\nvar range = new Range<int> { Min = 0, Max = 10 };\n
\n
var range = new Range<int> { Min = 0, Max = 10 };
\n", - "example": [], - "overload": { - "uid": "BuildFromProject.Class1.Issue2723*", - "name": [ - { - "lang": "csharp", - "value": "Issue2723" - }, - { - "lang": "vb", - "value": "Issue2723" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue2723" - }, - { - "lang": "vb", - "value": "Class1.Issue2723" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue2723" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue2723" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue2723_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue2723.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue2723%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L97", - "description": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue2723", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue4017", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue4017()" - }, - { - "lang": "vb", - "value": "Issue4017()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue4017()" - }, - { - "lang": "vb", - "value": "Class1.Issue4017()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue4017()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue4017()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue4017()" - }, - { - "lang": "vb", - "value": "Public Sub Issue4017()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue4017", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 55.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "remarks": "
void Update()\n{\n    myClass.Execute();\n}
\n", - "example": [ - "
public void HookMessageDeleted(BaseSocketClient client)\n{\n    client.MessageDeleted += HandleMessageDelete;\n}\n\npublic Task HandleMessageDelete(Cacheable<IMessage, ulong> cachedMessage, ISocketMessageChannel channel)\n{\n    // check if the message exists in cache; if not, we cannot report what was removed\n    if (!cachedMessage.HasValue) return;\n    var message = cachedMessage.Value;\n    Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\"\n        + Environment.NewLine\n        + message.Content);\n    return Task.CompletedTask;\n}
\n" - ], - "overload": { - "uid": "BuildFromProject.Class1.Issue4017*", - "name": [ - { - "lang": "csharp", - "value": "Issue4017" - }, - { - "lang": "vb", - "value": "Issue4017" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue4017" - }, - { - "lang": "vb", - "value": "Class1.Issue4017" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue4017" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue4017" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue4017_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue4017.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue4017%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L56", - "description": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue4017", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue4392", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue4392()" - }, - { - "lang": "vb", - "value": "Issue4392()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue4392()" - }, - { - "lang": "vb", - "value": "Class1.Issue4392()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue4392()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue4392()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue4392()" - }, - { - "lang": "vb", - "value": "Public Sub Issue4392()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue4392", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 101.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "remarks": "

@"\\\\?\\"

\n", - "example": [], - "overload": { - "uid": "BuildFromProject.Class1.Issue4392*", - "name": [ - { - "lang": "csharp", - "value": "Issue4392" - }, - { - "lang": "vb", - "value": "Issue4392" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue4392" - }, - { - "lang": "vb", - "value": "Class1.Issue4392" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue4392" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue4392" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue4392_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue4392.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue4392%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L102", - "description": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue4392", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue7484", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue7484()" - }, - { - "lang": "vb", - "value": "Issue7484()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue7484()" - }, - { - "lang": "vb", - "value": "Class1.Issue7484()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue7484()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue7484()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue7484()" - }, - { - "lang": "vb", - "value": "Public Sub Issue7484()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue7484", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 42.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "remarks": "

There's really no reason to not believe that this class can test things.

\n
TermDescription
A TermA Description
Bee TermBee Description
\n", - "example": [], - "overload": { - "uid": "BuildFromProject.Class1.Issue7484*", - "name": [ - { - "lang": "csharp", - "value": "Issue7484" - }, - { - "lang": "vb", - "value": "Issue7484" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue7484" - }, - { - "lang": "vb", - "value": "Class1.Issue7484" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue7484" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue7484" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue7484_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue7484.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue7484%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L43", - "description": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue7484", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue8764``1", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue8764()" - }, - { - "lang": "vb", - "value": "Issue8764(Of T)()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8764()" - }, - { - "lang": "vb", - "value": "Class1.Issue8764(Of T)()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8764()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8764(Of T)()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue8764() where T : unmanaged" - }, - { - "lang": "vb", - "value": "Public Sub Issue8764(Of T As Structure)()" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue8764", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 103.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "overload": { - "uid": "BuildFromProject.Class1.Issue8764*", - "name": [ - { - "lang": "csharp", - "value": "Issue8764" - }, - { - "lang": "vb", - "value": "Issue8764" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8764" - }, - { - "lang": "vb", - "value": "Class1.Issue8764" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8764" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8764" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue8764_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue8764__1.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue8764%60%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L104", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8764__1", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue896", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue896()" - }, - { - "lang": "vb", - "value": "Issue896()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue896()" - }, - { - "lang": "vb", - "value": "Class1.Issue896()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue896()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue896()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue896()" - }, - { - "lang": "vb", - "value": "Public Sub Issue896()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue896", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 19.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Class1.Issue896*", - "name": [ - { - "lang": "csharp", - "value": "Issue896" - }, - { - "lang": "vb", - "value": "Issue896" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue896" - }, - { - "lang": "vb", - "value": "Class1.Issue896" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue896" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue896" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue896_" - }, - "seealso": [ - { - "linkType": "cRef", - "type": { - "uid": "BuildFromProject.Class1.Test`1", - "name": [ - { - "lang": "csharp", - "value": "Class1.Test" - }, - { - "lang": "vb", - "value": "Class1.Test(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Test" - }, - { - "lang": "vb", - "value": "Class1.Test(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Test" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Test(Of T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.Test<T>" - }, - { - "lang": "vb", - "value": "Class1.Test(Of T)" - } - ] - }, - "isCref": true - }, - { - "linkType": "cRef", - "type": { - "uid": "BuildFromProject.Class1", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "isCref": true - } - ], - "level": 0.0, - "type": "method", - "summary": "

Test

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue896.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue896%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L20", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "id": "BuildFromProject_Class1_Issue896", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue9216", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue9216()" - }, - { - "lang": "vb", - "value": "Issue9216()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue9216()" - }, - { - "lang": "vb", - "value": "Class1.Issue9216()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue9216()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue9216()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static double Issue9216()" - }, - { - "lang": "vb", - "value": "Public Shared Function Issue9216() As Double" - } - ], - "return": { - "type": { - "uid": "System.Double", - "name": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "double" - }, - { - "lang": "vb", - "value": "Double" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue9216", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 163.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Class1.Issue9216*", - "name": [ - { - "lang": "csharp", - "value": "Issue9216" - }, - { - "lang": "vb", - "value": "Issue9216" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue9216" - }, - { - "lang": "vb", - "value": "Class1.Issue9216" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue9216" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue9216" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_Issue9216_" - }, - "level": 0.0, - "type": "method", - "summary": "

Calculates the determinant of a 3-dimensional matrix:

\n

\\(A = \\begin{vmatrix} a_{11} & a_{12} & a_{13} \\\\ a_{21} & a_{22} & a_{23} \\\\ a_{31} & a_{32} & a_{33} \\end{vmatrix}\\)

\n

Returns the smallest value:

\n

\\(\\left\\{\\begin{matrix}a, a<b \\\\ b, b>a\\\\ \\end{matrix} \\right.\\)

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_Issue9216.md&value=---%0Auid%3A%20BuildFromProject.Class1.Issue9216%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L164", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue9216", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.XmlCommentIncludeTag", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "XmlCommentIncludeTag()" - }, - { - "lang": "vb", - "value": "XmlCommentIncludeTag()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.XmlCommentIncludeTag()" - }, - { - "lang": "vb", - "value": "Class1.XmlCommentIncludeTag()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.XmlCommentIncludeTag()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.XmlCommentIncludeTag()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void XmlCommentIncludeTag()" - }, - { - "lang": "vb", - "value": "Public Sub XmlCommentIncludeTag()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "XmlCommentIncludeTag", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 11.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "remarks": "

This is remarks.

\n", - "example": [], - "overload": { - "uid": "BuildFromProject.Class1.XmlCommentIncludeTag*", - "name": [ - { - "lang": "csharp", - "value": "XmlCommentIncludeTag" - }, - { - "lang": "vb", - "value": "XmlCommentIncludeTag" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.XmlCommentIncludeTag" - }, - { - "lang": "vb", - "value": "Class1.XmlCommentIncludeTag" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.XmlCommentIncludeTag" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.XmlCommentIncludeTag" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Class1_XmlCommentIncludeTag_" - }, - "level": 0.0, - "implements": [ - { - "uid": "BuildFromProject.IClass1.XmlCommentIncludeTag", - "name": [ - { - "lang": "csharp", - "value": "XmlCommentIncludeTag()" - }, - { - "lang": "vb", - "value": "XmlCommentIncludeTag()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IClass1.XmlCommentIncludeTag()" - }, - { - "lang": "vb", - "value": "IClass1.XmlCommentIncludeTag()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.IClass1.XmlCommentIncludeTag()" - }, - { - "lang": "vb", - "value": "BuildFromProject.IClass1.XmlCommentIncludeTag()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "()" - }, - { - "lang": "vb", - "value": "()" - } - ] - } - ], - "type": "method", - "summary": "

This method should do something...

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1_XmlCommentIncludeTag.md&value=---%0Auid%3A%20BuildFromProject.Class1.XmlCommentIncludeTag%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L12", - "description": "", - "conceptual": "", - "seealso": [], - "id": "BuildFromProject_Class1_XmlCommentIncludeTag", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Class1", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 2.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Class1 : IClass1" - }, - { - "lang": "vb", - "value": "Public Class Class1 Implements IClass1" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "implements": [ - { - "uid": "BuildFromProject.IClass1", - "name": [ - { - "lang": "csharp", - "value": "IClass1" - }, - { - "lang": "vb", - "value": "IClass1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IClass1" - }, - { - "lang": "vb", - "value": "IClass1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.IClass1" - }, - { - "lang": "vb", - "value": "BuildFromProject.IClass1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Class1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Class1.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Class1.md&value=---%0Auid%3A%20BuildFromProject.Class1%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L3", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Dog.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Dog.html.view.verified.json deleted file mode 100644 index adbb442528a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Dog.html.view.verified.json +++ /dev/null @@ -1,1194 +0,0 @@ -{ - "uid": "BuildFromProject.Dog", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "BuildFromProject.Dog.#ctor(System.String,System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Dog", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Dog(string, int)" - }, - { - "lang": "vb", - "value": "New(String, Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Dog.Dog(string, int)" - }, - { - "lang": "vb", - "value": "Dog.New(String, Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Dog.Dog(string, int)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Dog.New(String, Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Dog(string name, int age)" - }, - { - "lang": "vb", - "value": "Public Sub New(name As String, age As Integer)" - } - ], - "parameters": [ - { - "id": "name", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Name of the dog.

\n" - }, - { - "id": "age", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Age of the dog.

\n" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 237.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Dog.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Dog" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Dog.Dog" - }, - { - "lang": "vb", - "value": "Dog.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Dog.Dog" - }, - { - "lang": "vb", - "value": "BuildFromProject.Dog.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Dog__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "

Constructor.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Dog__ctor_System_String_System_Int32_.md&value=---%0Auid%3A%20BuildFromProject.Dog.%23ctor(System.String%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L238", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Dog__ctor_System_String_System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "BuildFromProject.Dog.Age", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Dog", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Age" - }, - { - "lang": "vb", - "value": "Age" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Dog.Age" - }, - { - "lang": "vb", - "value": "Dog.Age" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Dog.Age" - }, - { - "lang": "vb", - "value": "BuildFromProject.Dog.Age" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public int Age { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property Age As Integer" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Age", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 230.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Dog.Age*", - "name": [ - { - "lang": "csharp", - "value": "Age" - }, - { - "lang": "vb", - "value": "Age" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Dog.Age" - }, - { - "lang": "vb", - "value": "Dog.Age" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Dog.Age" - }, - { - "lang": "vb", - "value": "BuildFromProject.Dog.Age" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Dog_Age_" - }, - "level": 0.0, - "type": "property", - "summary": "

Age of the dog.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Dog_Age.md&value=---%0Auid%3A%20BuildFromProject.Dog.Age%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L231", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Dog_Age", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Dog.Name", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Dog", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Name" - }, - { - "lang": "vb", - "value": "Name" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Dog.Name" - }, - { - "lang": "vb", - "value": "Dog.Name" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Dog.Name" - }, - { - "lang": "vb", - "value": "BuildFromProject.Dog.Name" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string Name { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property Name As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Name", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 225.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Dog.Name*", - "name": [ - { - "lang": "csharp", - "value": "Name" - }, - { - "lang": "vb", - "value": "Name" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Dog.Name" - }, - { - "lang": "vb", - "value": "Dog.Name" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Dog.Name" - }, - { - "lang": "vb", - "value": "BuildFromProject.Dog.Name" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Dog_Name_" - }, - "level": 0.0, - "type": "property", - "summary": "

Name of the dog.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Dog_Name.md&value=---%0Auid%3A%20BuildFromProject.Dog.Name%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L226", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Dog_Name", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Dog" - }, - { - "lang": "vb", - "value": "Dog" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Dog" - }, - { - "lang": "vb", - "value": "Dog" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Dog" - }, - { - "lang": "vb", - "value": "BuildFromProject.Dog" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Dog", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 220.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

Class representing a dog.

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Dog" - }, - { - "lang": "vb", - "value": "Public Class Dog" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Dog.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Dog.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Dog.md&value=---%0Auid%3A%20BuildFromProject.Dog%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L221", - "description": "Class representing a dog.", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Dog", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.IInheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.IInheritdoc.html.view.verified.json deleted file mode 100644 index 077f7eb4387..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.IInheritdoc.html.view.verified.json +++ /dev/null @@ -1,334 +0,0 @@ -{ - "uid": "BuildFromProject.IInheritdoc", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.IInheritdoc.Issue7629", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.IInheritdoc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue7629()" - }, - { - "lang": "vb", - "value": "Issue7629()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IInheritdoc.Issue7629()" - }, - { - "lang": "vb", - "value": "IInheritdoc.Issue7629()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.IInheritdoc.Issue7629()" - }, - { - "lang": "vb", - "value": "BuildFromProject.IInheritdoc.Issue7629()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "void Issue7629()" - }, - { - "lang": "vb", - "value": "Sub Issue7629()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue7629", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 7.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.IInheritdoc.Issue7629*", - "name": [ - { - "lang": "csharp", - "value": "Issue7629" - }, - { - "lang": "vb", - "value": "Issue7629" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IInheritdoc.Issue7629" - }, - { - "lang": "vb", - "value": "IInheritdoc.Issue7629" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.IInheritdoc.Issue7629" - }, - { - "lang": "vb", - "value": "BuildFromProject.IInheritdoc.Issue7629" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_IInheritdoc_Issue7629_" - }, - "level": 0.0, - "type": "method", - "summary": "

This method should do something...

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_IInheritdoc_Issue7629.md&value=---%0Auid%3A%20BuildFromProject.IInheritdoc.Issue7629%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L8", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_IInheritdoc_Issue7629", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "IInheritdoc" - }, - { - "lang": "vb", - "value": "IInheritdoc" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IInheritdoc" - }, - { - "lang": "vb", - "value": "IInheritdoc" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.IInheritdoc" - }, - { - "lang": "vb", - "value": "BuildFromProject.IInheritdoc" - } - ], - "type": "interface", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "IInheritdoc", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 2.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public interface IInheritdoc" - }, - { - "lang": "vb", - "value": "Public Interface IInheritdoc" - } - ] - }, - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.IInheritdoc.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.IInheritdoc.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_IInheritdoc.md&value=---%0Auid%3A%20BuildFromProject.IInheritdoc%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L3", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_IInheritdoc", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inInterface": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json deleted file mode 100644 index b8406fd280b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json +++ /dev/null @@ -1,899 +0,0 @@ -{ - "uid": "BuildFromProject.Inheritdoc.Issue6366.Class1`1", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.Inheritdoc.Issue6366.Class1`1.TestMethod1(`0,System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc.Issue6366.Class1`1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "TestMethod1(T, int)" - }, - { - "lang": "vb", - "value": "TestMethod1(T, Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1.TestMethod1(T, int)" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of T).TestMethod1(T, Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1.TestMethod1(T, int)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1(Of T).TestMethod1(T, Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public abstract T TestMethod1(T parm1, int parm2)" - }, - { - "lang": "vb", - "value": "Public MustOverride Function TestMethod1(parm1 As T, parm2 As Integer) As T" - } - ], - "parameters": [ - { - "id": "parm1", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This text NOT inherited.

\n" - }, - { - "id": "parm2", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This text inherited.

\n" - } - ], - "return": { - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This text inherited.

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "TestMethod1", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 101.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue6366.Class1`1.TestMethod1*", - "name": [ - { - "lang": "csharp", - "value": "TestMethod1" - }, - { - "lang": "vb", - "value": "TestMethod1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1.TestMethod1" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of T).TestMethod1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1.TestMethod1" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1(Of T).TestMethod1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue6366_Class1_1_TestMethod1_" - }, - "level": 0.0, - "type": "method", - "summary": "

This text inherited.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue6366_Class1_1_TestMethod1__0_System_Int32_.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue6366.Class1%601.TestMethod1(%600%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L102", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue6366_Class1_1_TestMethod1__0_System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1(Of T)" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Class1", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 93.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public abstract class Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "Public MustInherit Class Inheritdoc.Issue6366.Class1(Of T)" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "derivedClasses": [ - { - "isEii": false, - "isExtensionMethod": false, - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 2.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue6366_Class1_1.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue6366.Class1%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L94", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue6366_Class1_1", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json deleted file mode 100644 index a0e244c9522..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json +++ /dev/null @@ -1,967 +0,0 @@ -{ - "uid": "BuildFromProject.Inheritdoc.Issue6366.Class2", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1(System.Boolean,System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc.Issue6366.Class2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "TestMethod1(bool, int)" - }, - { - "lang": "vb", - "value": "TestMethod1(Boolean, Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class2.TestMethod1(bool, int)" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class2.TestMethod1(Boolean, Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1(bool, int)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1(Boolean, Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public override bool TestMethod1(bool parm1, int parm2)" - }, - { - "lang": "vb", - "value": "Public Overrides Function TestMethod1(parm1 As Boolean, parm2 As Integer) As Boolean" - } - ], - "parameters": [ - { - "id": "parm1", - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This text NOT inherited.

\n" - }, - { - "id": "parm2", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This text inherited.

\n" - } - ], - "return": { - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This text inherited.

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "TestMethod1", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 107.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overridden": { - "uid": "BuildFromProject.Inheritdoc.Issue6366.Class1{System.Boolean}.TestMethod1(System.Boolean,System.Int32)", - "definition": "BuildFromProject.Inheritdoc.Issue6366.Class1`1.TestMethod1(`0,System.Int32)", - "name": [ - { - "lang": "csharp", - "value": "TestMethod1(bool, int)" - }, - { - "lang": "vb", - "value": "TestMethod1(Boolean, Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1.TestMethod1(bool, int)" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of Boolean).TestMethod1(Boolean, Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1.TestMethod1(bool, int)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1(Of Boolean).TestMethod1(Boolean, Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "TestMethod1(bool, int)" - }, - { - "lang": "vb", - "value": "TestMethod1(Boolean, Integer)" - } - ] - }, - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1*", - "name": [ - { - "lang": "csharp", - "value": "TestMethod1" - }, - { - "lang": "vb", - "value": "TestMethod1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class2.TestMethod1" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class2.TestMethod1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue6366_Class2_TestMethod1_" - }, - "level": 0.0, - "type": "method", - "summary": "

This text inherited.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue6366_Class2_TestMethod1_System_Boolean_System_Int32_.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1(System.Boolean%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L108", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue6366_Class2_TestMethod1_System_Boolean_System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class2" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class2" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class2" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class2" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class2" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class2" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Class2", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 104.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "Public Class Inheritdoc.Issue6366.Class2 Inherits Inheritdoc.Issue6366.Class1(Of Boolean)" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue6366.Class1{System.Boolean}", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject", - "definition": "BuildFromProject.Inheritdoc.Issue6366.Class1`1", - "href": "BuildFromProject.Inheritdoc.html", - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1(Of Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1<bool>" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of Boolean)" - } - ], - "level": 0.0, - "index": 1.0 - } - ], - "level": 2.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Inheritdoc.Issue6366.Class2.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue6366_Class2.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue6366.Class2%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L105", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue6366_Class2", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json deleted file mode 100644 index d7cdb5acc8e..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json +++ /dev/null @@ -1,590 +0,0 @@ -{ - "uid": "BuildFromProject.Inheritdoc.Issue6366", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue6366", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 91.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Inheritdoc.Issue6366" - }, - { - "lang": "vb", - "value": "Public Class Inheritdoc.Issue6366" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Inheritdoc.Issue6366.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Inheritdoc.Issue6366.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue6366.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue6366%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L92", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue6366", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json deleted file mode 100644 index ff637cd9194..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json +++ /dev/null @@ -1,864 +0,0 @@ -{ - "uid": "BuildFromProject.Inheritdoc.Issue7035", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.Inheritdoc.Issue7035.A", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc.Issue7035", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "A()" - }, - { - "lang": "vb", - "value": "A()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7035.A()" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7035.A()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7035.A()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7035.A()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void A()" - }, - { - "lang": "vb", - "value": "Public Sub A()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "A", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 85.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue7035.A*", - "name": [ - { - "lang": "csharp", - "value": "A" - }, - { - "lang": "vb", - "value": "A" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7035.A" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7035.A" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7035.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7035.A" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue7035_A_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue7035_A.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue7035.A%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L86", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7035_A", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue7035.B", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc.Issue7035", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "B()" - }, - { - "lang": "vb", - "value": "B()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7035.B()" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7035.B()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7035.B()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7035.B()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void B()" - }, - { - "lang": "vb", - "value": "Public Sub B()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "B", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 88.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue7035.B*", - "name": [ - { - "lang": "csharp", - "value": "B" - }, - { - "lang": "vb", - "value": "B" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7035.B" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7035.B" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7035.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7035.B" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue7035_B_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue7035_B.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue7035.B%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L89", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7035_B", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7035" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7035" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7035" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7035" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7035" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7035" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue7035", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 82.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Inheritdoc.Issue7035" - }, - { - "lang": "vb", - "value": "Public Class Inheritdoc.Issue7035" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Inheritdoc.Issue7035.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Inheritdoc.Issue7035.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue7035.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue7035%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L83", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7035", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json deleted file mode 100644 index 38204442c1a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json +++ /dev/null @@ -1,1153 +0,0 @@ -{ - "uid": "BuildFromProject.Inheritdoc.Issue7484", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "BuildFromProject.Inheritdoc.Issue7484.#ctor", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc.Issue7484", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue7484()" - }, - { - "lang": "vb", - "value": "New()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484.Issue7484()" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484.New()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7484.Issue7484()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7484.New()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Issue7484()" - }, - { - "lang": "vb", - "value": "Public Sub New()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 63.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue7484.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Issue7484" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484.Issue7484" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7484.Issue7484" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7484.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue7484__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "

This is a constructor to document.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue7484__ctor.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue7484.%23ctor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L64", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7484__ctor", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "BuildFromProject.Inheritdoc.Issue7484.DoDad", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc.Issue7484", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "DoDad" - }, - { - "lang": "vb", - "value": "DoDad" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484.DoDad" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484.DoDad" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7484.DoDad" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7484.DoDad" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string DoDad { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property DoDad As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "DoDad", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 68.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue7484.DoDad*", - "name": [ - { - "lang": "csharp", - "value": "DoDad" - }, - { - "lang": "vb", - "value": "DoDad" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484.DoDad" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484.DoDad" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7484.DoDad" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7484.DoDad" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue7484_DoDad_" - }, - "level": 0.0, - "type": "property", - "summary": "

A string that could have something.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue7484_DoDad.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue7484.DoDad%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L69", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7484_DoDad", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod(System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc.Issue7484", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "BoolReturningMethod(bool)" - }, - { - "lang": "vb", - "value": "BoolReturningMethod(Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484.BoolReturningMethod(bool)" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484.BoolReturningMethod(Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod(bool)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod(Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public bool BoolReturningMethod(bool source)" - }, - { - "lang": "vb", - "value": "Public Function BoolReturningMethod(source As Boolean) As Boolean" - } - ], - "parameters": [ - { - "id": "source", - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

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

\n" - } - ], - "return": { - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

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

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "BoolReturningMethod", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 79.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "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", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod*", - "name": [ - { - "lang": "csharp", - "value": "BoolReturningMethod" - }, - { - "lang": "vb", - "value": "BoolReturningMethod" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484.BoolReturningMethod" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484.BoolReturningMethod" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue7484_BoolReturningMethod_" - }, - "level": 0.0, - "type": "method", - "summary": "

Simple method to generate docs for.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue7484_BoolReturningMethod_System_Boolean_.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L80", - "description": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7484_BoolReturningMethod_System_Boolean_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7484" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7484" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue7484", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 58.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

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

\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", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Inheritdoc.Issue7484" - }, - { - "lang": "vb", - "value": "Public Class Inheritdoc.Issue7484" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Inheritdoc.Issue7484.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Inheritdoc.Issue7484.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue7484.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue7484%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L59", - "description": "This is a test class to have something for DocFX to document.", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7484", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json deleted file mode 100644 index 330d2aab6bc..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json +++ /dev/null @@ -1,1338 +0,0 @@ -{ - "uid": "BuildFromProject.Inheritdoc.Issue8101", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.Inheritdoc.Issue8101.Tween(System.Int32,System.Int32,System.Single,System.Action{System.Int32})", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc.Issue8101", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Tween(int, int, float, Action)" - }, - { - "lang": "vb", - "value": "Tween(Integer, Integer, Single, Action(Of Integer))" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8101.Tween(int, int, float, Action)" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8101.Tween(Integer, Integer, Single, Action(Of Integer))" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue8101.Tween(int, int, float, System.Action)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue8101.Tween(Integer, Integer, Single, System.Action(Of Integer))" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static object Tween(int from, int to, float duration, Action onChange)" - }, - { - "lang": "vb", - "value": "Public Shared Function Tween(from As Integer, [to] As Integer, duration As Single, onChange As Action(Of Integer)) As Object" - } - ], - "parameters": [ - { - "id": "from", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

The starting value.

\n" - }, - { - "id": "to", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

The end value.

\n" - }, - { - "id": "duration", - "type": { - "uid": "System.Single", - "name": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Total tween duration in seconds.

\n" - }, - { - "id": "onChange", - "type": { - "uid": "System.Action{System.Int32}", - "definition": "System.Action`1", - "name": [ - { - "lang": "csharp", - "value": "Action" - }, - { - "lang": "vb", - "value": "Action(Of Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Action" - }, - { - "lang": "vb", - "value": "Action(Of Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Action" - }, - { - "lang": "vb", - "value": "System.Action(Of Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Action<int>" - }, - { - "lang": "vb", - "value": "Action(Of Integer)" - } - ] - }, - "description": "

A callback that will be invoked every time the tween value changes.

\n" - } - ], - "return": { - "type": { - "uid": "System.Object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

The newly created tween instance.

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Tween", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 32.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue8101.Tween*", - "name": [ - { - "lang": "csharp", - "value": "Tween" - }, - { - "lang": "vb", - "value": "Tween" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8101.Tween" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8101.Tween" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue8101.Tween" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue8101.Tween" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue8101_Tween_" - }, - "level": 0.0, - "type": "method", - "summary": "

Create a new tween.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue8101_Tween_System_Int32_System_Int32_System_Single_System_Action_System_Int32__.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue8101.Tween(System.Int32%2CSystem.Int32%2CSystem.Single%2CSystem.Action%7BSystem.Int32%7D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L33", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue8101_Tween_System_Int32_System_Int32_System_Single_System_Action_System_Int32__", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue8101.Tween(System.Single,System.Single,System.Single,System.Action{System.Single})", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc.Issue8101", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Tween(float, float, float, Action)" - }, - { - "lang": "vb", - "value": "Tween(Single, Single, Single, Action(Of Single))" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8101.Tween(float, float, float, Action)" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8101.Tween(Single, Single, Single, Action(Of Single))" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue8101.Tween(float, float, float, System.Action)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue8101.Tween(Single, Single, Single, System.Action(Of Single))" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static object Tween(float from, float to, float duration, Action onChange)" - }, - { - "lang": "vb", - "value": "Public Shared Function Tween(from As Single, [to] As Single, duration As Single, onChange As Action(Of Single)) As Object" - } - ], - "parameters": [ - { - "id": "from", - "type": { - "uid": "System.Single", - "name": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

The starting value.

\n" - }, - { - "id": "to", - "type": { - "uid": "System.Single", - "name": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

The end value.

\n" - }, - { - "id": "duration", - "type": { - "uid": "System.Single", - "name": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "float" - }, - { - "lang": "vb", - "value": "Single" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Total tween duration in seconds.

\n" - }, - { - "id": "onChange", - "type": { - "uid": "System.Action{System.Single}", - "definition": "System.Action`1", - "name": [ - { - "lang": "csharp", - "value": "Action" - }, - { - "lang": "vb", - "value": "Action(Of Single)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Action" - }, - { - "lang": "vb", - "value": "Action(Of Single)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Action" - }, - { - "lang": "vb", - "value": "System.Action(Of Single)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Action<float>" - }, - { - "lang": "vb", - "value": "Action(Of Single)" - } - ] - }, - "description": "

A callback that will be invoked every time the tween value changes.

\n" - } - ], - "return": { - "type": { - "uid": "System.Object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

The newly created tween instance.

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Tween", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 29.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue8101.Tween*", - "name": [ - { - "lang": "csharp", - "value": "Tween" - }, - { - "lang": "vb", - "value": "Tween" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8101.Tween" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8101.Tween" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue8101.Tween" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue8101.Tween" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue8101_Tween_" - }, - "level": 0.0, - "type": "method", - "summary": "

Create a new tween.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue8101_Tween_System_Single_System_Single_System_Single_System_Action_System_Single__.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue8101.Tween(System.Single%2CSystem.Single%2CSystem.Single%2CSystem.Action%7BSystem.Single%7D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L30", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue8101_Tween_System_Single_System_Single_System_Single_System_Action_System_Single__", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8101" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8101" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8101" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8101" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue8101" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue8101" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue8101", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 19.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Inheritdoc.Issue8101" - }, - { - "lang": "vb", - "value": "Public Class Inheritdoc.Issue8101" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Inheritdoc.Issue8101.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Inheritdoc.Issue8101.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue8101.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue8101%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L20", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue8101", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json deleted file mode 100644 index b8669808a3c..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json +++ /dev/null @@ -1,678 +0,0 @@ -{ - "uid": "BuildFromProject.Inheritdoc.Issue8129", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "BuildFromProject.Inheritdoc.Issue8129.#ctor(System.String)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc.Issue8129", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue8129(string)" - }, - { - "lang": "vb", - "value": "New(String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8129.Issue8129(string)" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8129.New(String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue8129.Issue8129(string)" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue8129.New(String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Issue8129(string foo)" - }, - { - "lang": "vb", - "value": "Public Sub New(foo As String)" - } - ], - "parameters": [ - { - "id": "foo", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 38.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue8129.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Issue8129" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8129.Issue8129" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8129.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue8129.Issue8129" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue8129.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue8129__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue8129__ctor_System_String_.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue8129.%23ctor(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L39", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue8129__ctor_System_String_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8129" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8129" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8129" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8129" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue8129" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue8129" - } - ], - "type": "struct", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue8129", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 35.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public struct Inheritdoc.Issue8129" - }, - { - "lang": "vb", - "value": "Public Structure Inheritdoc.Issue8129" - } - ] - }, - "level": 0.0, - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Inheritdoc.Issue8129.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Inheritdoc.Issue8129.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue8129.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue8129%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L36", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue8129", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.html.view.verified.json deleted file mode 100644 index dd0f0fc2033..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.html.view.verified.json +++ /dev/null @@ -1,1172 +0,0 @@ -{ - "uid": "BuildFromProject.Inheritdoc", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.Inheritdoc.Dispose", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Dispose()" - }, - { - "lang": "vb", - "value": "Dispose()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Dispose()" - }, - { - "lang": "vb", - "value": "Inheritdoc.Dispose()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Dispose()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Dispose()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Dispose()" - }, - { - "lang": "vb", - "value": "Public Sub Dispose()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Dispose", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 12.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Dispose*", - "name": [ - { - "lang": "csharp", - "value": "Dispose" - }, - { - "lang": "vb", - "value": "Dispose" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Dispose" - }, - { - "lang": "vb", - "value": "Inheritdoc.Dispose" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Dispose" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Dispose" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Dispose_" - }, - "level": 0.0, - "implements": [ - { - "uid": "System.IDisposable.Dispose", - "name": [ - { - "lang": "csharp", - "value": "Dispose()" - }, - { - "lang": "vb", - "value": "Dispose()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IDisposable.Dispose()" - }, - { - "lang": "vb", - "value": "IDisposable.Dispose()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.IDisposable.Dispose()" - }, - { - "lang": "vb", - "value": "System.IDisposable.Dispose()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Dispose()" - }, - { - "lang": "vb", - "value": "Dispose()" - } - ] - } - ], - "type": "method", - "summary": "

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Dispose.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L13", - "description": "", - "remarks": "", - "conceptual": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Dispose", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue7628", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue7628()" - }, - { - "lang": "vb", - "value": "Issue7628()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7628()" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7628()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7628()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7628()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue7628()" - }, - { - "lang": "vb", - "value": "Public Sub Issue7628()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue7628", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 17.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue7628*", - "name": [ - { - "lang": "csharp", - "value": "Issue7628" - }, - { - "lang": "vb", - "value": "Issue7628" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7628" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7628" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7628" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7628" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue7628_" - }, - "level": 0.0, - "type": "method", - "summary": "

This method should do something...

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue7628.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue7628%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L18", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7628", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue7629", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Inheritdoc", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Issue7629()" - }, - { - "lang": "vb", - "value": "Issue7629()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7629()" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7629()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7629()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7629()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void Issue7629()" - }, - { - "lang": "vb", - "value": "Public Sub Issue7629()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue7629", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 14.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Inheritdoc.Issue7629*", - "name": [ - { - "lang": "csharp", - "value": "Issue7629" - }, - { - "lang": "vb", - "value": "Issue7629" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7629" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7629" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7629" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7629" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Inheritdoc_Issue7629_" - }, - "level": 0.0, - "implements": [ - { - "uid": "BuildFromProject.IInheritdoc.Issue7629", - "name": [ - { - "lang": "csharp", - "value": "Issue7629()" - }, - { - "lang": "vb", - "value": "Issue7629()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IInheritdoc.Issue7629()" - }, - { - "lang": "vb", - "value": "IInheritdoc.Issue7629()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.IInheritdoc.Issue7629()" - }, - { - "lang": "vb", - "value": "BuildFromProject.IInheritdoc.Issue7629()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Issue7629()" - }, - { - "lang": "vb", - "value": "Issue7629()" - } - ] - } - ], - "type": "method", - "summary": "

This method should do something...

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc_Issue7629.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc.Issue7629%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L15", - "description": "", - "remarks": "", - "conceptual": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7629", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc" - }, - { - "lang": "vb", - "value": "Inheritdoc" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc" - }, - { - "lang": "vb", - "value": "Inheritdoc" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Inheritdoc.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Inheritdoc", - "path": "dotnet/project/Project/Inheritdoc.cs", - "startLine": 10.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Inheritdoc : IInheritdoc, IDisposable" - }, - { - "lang": "vb", - "value": "Public Class Inheritdoc Implements IInheritdoc, IDisposable" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "implements": [ - { - "uid": "BuildFromProject.IInheritdoc", - "name": [ - { - "lang": "csharp", - "value": "IInheritdoc" - }, - { - "lang": "vb", - "value": "IInheritdoc" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IInheritdoc" - }, - { - "lang": "vb", - "value": "IInheritdoc" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.IInheritdoc" - }, - { - "lang": "vb", - "value": "BuildFromProject.IInheritdoc" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - { - "uid": "System.IDisposable", - "name": [ - { - "lang": "csharp", - "value": "IDisposable" - }, - { - "lang": "vb", - "value": "IDisposable" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IDisposable" - }, - { - "lang": "vb", - "value": "IDisposable" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.IDisposable" - }, - { - "lang": "vb", - "value": "System.IDisposable" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Inheritdoc.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Inheritdoc.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Inheritdoc.md&value=---%0Auid%3A%20BuildFromProject.Inheritdoc%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Inheritdoc.cs/#L11", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.A.A.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.A.A.html.view.verified.json deleted file mode 100644 index 3e90e1be86a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.A.A.html.view.verified.json +++ /dev/null @@ -1,590 +0,0 @@ -{ - "uid": "BuildFromProject.Issue8540.A.A", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject.Issue8540.A", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "A" - }, - { - "lang": "vb", - "value": "A" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "A" - }, - { - "lang": "vb", - "value": "A" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A.A" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Namespace.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "A", - "path": "dotnet/project/Project/Namespace.cs", - "startLine": 2.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject.Issue8540.A", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class A" - }, - { - "lang": "vb", - "value": "Public Class A" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Issue8540.A.A.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Issue8540.A.A.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Issue8540_A_A.md&value=---%0Auid%3A%20BuildFromProject.Issue8540.A.A%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Namespace.cs/#L3", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8540_A_A", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.A.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.A.html.view.verified.json deleted file mode 100644 index e346eb1fdb1..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.A.html.view.verified.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "uid": "BuildFromProject.Issue8540.A", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "isEii": false, - "isExtensionMethod": false, - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "BuildFromProject.Issue8540.A.A", - "isExtensionMethod": false, - "href": "BuildFromProject.Issue8540.A.A.html", - "name": [ - { - "lang": "csharp", - "value": "A" - }, - { - "lang": "vb", - "value": "A" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "A" - }, - { - "lang": "vb", - "value": "A" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A.A" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8540_A_A", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "type": "namespace", - "assemblies": [ - "BuildFromProject" - ], - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Issue8540.A.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Issue8540.A.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8540_A", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.B.B.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.B.B.html.view.verified.json deleted file mode 100644 index 0f4a61cd40d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.B.B.html.view.verified.json +++ /dev/null @@ -1,590 +0,0 @@ -{ - "uid": "BuildFromProject.Issue8540.B.B", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject.Issue8540.B", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "B" - }, - { - "lang": "vb", - "value": "B" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "B" - }, - { - "lang": "vb", - "value": "B" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B.B" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Namespace.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "B", - "path": "dotnet/project/Project/Namespace.cs", - "startLine": 7.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject.Issue8540.B", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class B" - }, - { - "lang": "vb", - "value": "Public Class B" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Issue8540.B.B.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Issue8540.B.B.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Issue8540_B_B.md&value=---%0Auid%3A%20BuildFromProject.Issue8540.B.B%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Namespace.cs/#L8", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8540_B_B", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.B.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.B.html.view.verified.json deleted file mode 100644 index ef7bb78d3b7..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.B.html.view.verified.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "uid": "BuildFromProject.Issue8540.B", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "isEii": false, - "isExtensionMethod": false, - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "BuildFromProject.Issue8540.B.B", - "isExtensionMethod": false, - "href": "BuildFromProject.Issue8540.B.B.html", - "name": [ - { - "lang": "csharp", - "value": "B" - }, - { - "lang": "vb", - "value": "B" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "B" - }, - { - "lang": "vb", - "value": "B" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B.B" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8540_B_B", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "type": "namespace", - "assemblies": [ - "BuildFromProject" - ], - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Issue8540.B.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Issue8540.B.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8540_B", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.html.view.verified.json deleted file mode 100644 index c15a99d2654..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.html.view.verified.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "uid": "BuildFromProject.Issue8540", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "isEii": false, - "isExtensionMethod": false, - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inNamespace": true, - "typePropertyName": "inNamespace", - "id": "namespaces", - "children": [ - { - "uid": "BuildFromProject.Issue8540.A", - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.A" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.A" - } - ], - "level": 0.0, - "summary": "", - "type": "namespace", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8540_A", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Issue8540.B", - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540.B" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540.B" - } - ], - "level": 0.0, - "summary": "", - "type": "namespace", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8540_B", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8540" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8540" - } - ], - "type": "namespace", - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Issue8540.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Issue8540.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8540", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8725.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8725.html.view.verified.json deleted file mode 100644 index f868a813549..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8725.html.view.verified.json +++ /dev/null @@ -1,912 +0,0 @@ -{ - "uid": "BuildFromProject.Issue8725", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromProject.Issue8725.MoreOperations", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Issue8725", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "MoreOperations()" - }, - { - "lang": "vb", - "value": "MoreOperations()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue8725.MoreOperations()" - }, - { - "lang": "vb", - "value": "Issue8725.MoreOperations()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8725.MoreOperations()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8725.MoreOperations()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void MoreOperations()" - }, - { - "lang": "vb", - "value": "Public Sub MoreOperations()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "MoreOperations", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 214.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Issue8725.MoreOperations*", - "name": [ - { - "lang": "csharp", - "value": "MoreOperations" - }, - { - "lang": "vb", - "value": "MoreOperations" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue8725.MoreOperations" - }, - { - "lang": "vb", - "value": "Issue8725.MoreOperations" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8725.MoreOperations" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8725.MoreOperations" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Issue8725_MoreOperations_" - }, - "level": 0.0, - "type": "method", - "summary": "

Another nice operation

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Issue8725_MoreOperations.md&value=---%0Auid%3A%20BuildFromProject.Issue8725.MoreOperations%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L215", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Issue8725_MoreOperations", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Issue8725.MyOperation", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromProject.Issue8725", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "MyOperation()" - }, - { - "lang": "vb", - "value": "MyOperation()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue8725.MyOperation()" - }, - { - "lang": "vb", - "value": "Issue8725.MyOperation()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8725.MyOperation()" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8725.MyOperation()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public void MyOperation()" - }, - { - "lang": "vb", - "value": "Public Sub MyOperation()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "MyOperation", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 211.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": "BuildFromProject", - "example": [], - "overload": { - "uid": "BuildFromProject.Issue8725.MyOperation*", - "name": [ - { - "lang": "csharp", - "value": "MyOperation" - }, - { - "lang": "vb", - "value": "MyOperation" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue8725.MyOperation" - }, - { - "lang": "vb", - "value": "Issue8725.MyOperation" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8725.MyOperation" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8725.MyOperation" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromProject_Issue8725_MyOperation_" - }, - "level": 0.0, - "type": "method", - "summary": "

A nice operation

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Issue8725_MyOperation.md&value=---%0Auid%3A%20BuildFromProject.Issue8725.MyOperation%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L212", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromProject_Issue8725_MyOperation", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Issue8725" - }, - { - "lang": "vb", - "value": "Issue8725" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue8725" - }, - { - "lang": "vb", - "value": "Issue8725" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8725" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8725" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/project/Project/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue8725", - "path": "dotnet/project/Project/Class1.cs", - "startLine": 208.0, - "endLine": 0.0 - }, - "assemblies": [ - "BuildFromProject" - ], - "namespace": { - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromProject.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

A nice class

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Issue8725" - }, - { - "lang": "vb", - "value": "Public Class Issue8725" - } - ] - }, - "seealso": [ - { - "linkType": "cRef", - "type": { - "uid": "BuildFromProject.Class1", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "isCref": true - } - ], - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.Issue8725.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.Issue8725.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromProject_Issue8725.md&value=---%0Auid%3A%20BuildFromProject.Issue8725%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/project/Project/Class1.cs/#L209", - "description": "A nice class", - "remarks": "", - "conceptual": "", - "implements": "", - "id": "BuildFromProject_Issue8725", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.html.view.verified.json deleted file mode 100644 index c6c39d60214..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.html.view.verified.json +++ /dev/null @@ -1,1264 +0,0 @@ -{ - "uid": "BuildFromProject", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inNamespace": true, - "typePropertyName": "inNamespace", - "id": "namespaces", - "children": [ - { - "uid": "BuildFromProject.Issue8540", - "isExtensionMethod": false, - "isExternal": true, - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "namespace", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8540", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "BuildFromProject.Class1", - "isExtensionMethod": false, - "href": "BuildFromProject.Class1.html", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue8665", - "isExtensionMethod": false, - "href": "BuildFromProject.Class1.html", - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue8665" - }, - { - "lang": "vb", - "value": "Class1.Issue8665" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8665" - }, - { - "lang": "vb", - "value": "Class1.Issue8665" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8665" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8665" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.Issue8665" - }, - { - "lang": "vb", - "value": "Class1.Issue8665" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8665", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue8696Attribute", - "isExtensionMethod": false, - "parent": "BuildFromProject", - "href": "BuildFromProject.Class1.html", - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue8696Attribute" - }, - { - "lang": "vb", - "value": "Class1.Issue8696Attribute" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8696Attribute" - }, - { - "lang": "vb", - "value": "Class1.Issue8696Attribute" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8696Attribute" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8696Attribute" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.Issue8696Attribute" - }, - { - "lang": "vb", - "value": "Class1.Issue8696Attribute" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8696Attribute", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Issue8948", - "isExtensionMethod": false, - "href": "BuildFromProject.Class1.html", - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue8948" - }, - { - "lang": "vb", - "value": "Class1.Issue8948" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue8948" - }, - { - "lang": "vb", - "value": "Class1.Issue8948" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue8948" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue8948" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.Issue8948" - }, - { - "lang": "vb", - "value": "Class1.Issue8948" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue8948", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Class1.Test`1", - "isExtensionMethod": false, - "href": "BuildFromProject.Class1.html", - "name": [ - { - "lang": "csharp", - "value": "Class1.Test" - }, - { - "lang": "vb", - "value": "Class1.Test(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Test" - }, - { - "lang": "vb", - "value": "Class1.Test(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Test" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Test(Of T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.Test<T>" - }, - { - "lang": "vb", - "value": "Class1.Test(Of T)" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Test_1", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Dog", - "isExtensionMethod": false, - "href": "BuildFromProject.Dog.html", - "name": [ - { - "lang": "csharp", - "value": "Dog" - }, - { - "lang": "vb", - "value": "Dog" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Dog" - }, - { - "lang": "vb", - "value": "Dog" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Dog" - }, - { - "lang": "vb", - "value": "BuildFromProject.Dog" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

Class representing a dog.

\n", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Dog", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc", - "isExtensionMethod": false, - "href": "BuildFromProject.Inheritdoc.html", - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc" - }, - { - "lang": "vb", - "value": "Inheritdoc" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc" - }, - { - "lang": "vb", - "value": "Inheritdoc" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue6366", - "isExtensionMethod": false, - "href": "BuildFromProject.Inheritdoc.html", - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue6366", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue6366.Class1`1", - "isExtensionMethod": false, - "href": "BuildFromProject.Inheritdoc.html", - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class1(Of T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class1<T>" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class1(Of T)" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue6366_Class1_1", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue6366.Class2", - "isExtensionMethod": false, - "href": "BuildFromProject.Inheritdoc.html", - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class2" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class2" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class2" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class2" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class2" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue6366.Class2" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue6366.Class2" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue6366.Class2" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue6366_Class2", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue7035", - "isExtensionMethod": false, - "href": "BuildFromProject.Inheritdoc.html", - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7035" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7035" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7035" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7035" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7035" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7035" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7035" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7035" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7035", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue7484", - "isExtensionMethod": false, - "href": "BuildFromProject.Inheritdoc.html", - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue7484" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue7484" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue7484" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue7484" - } - ], - "level": 0.0, - "summary": "

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

\n", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue7484", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Inheritdoc.Issue8101", - "isExtensionMethod": false, - "href": "BuildFromProject.Inheritdoc.html", - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8101" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8101" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8101" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8101" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue8101" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue8101" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8101" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8101" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue8101", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.Issue8725", - "isExtensionMethod": false, - "href": "BuildFromProject.Issue8725.html", - "name": [ - { - "lang": "csharp", - "value": "Issue8725" - }, - { - "lang": "vb", - "value": "Issue8725" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue8725" - }, - { - "lang": "vb", - "value": "Issue8725" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Issue8725" - }, - { - "lang": "vb", - "value": "BuildFromProject.Issue8725" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

A nice class

\n", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Issue8725", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inStruct": true, - "typePropertyName": "inStruct", - "id": "structs", - "children": [ - { - "uid": "BuildFromProject.Inheritdoc.Issue8129", - "isExtensionMethod": false, - "href": "BuildFromProject.Inheritdoc.html", - "name": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8129" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8129" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8129" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8129" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Inheritdoc.Issue8129" - }, - { - "lang": "vb", - "value": "BuildFromProject.Inheritdoc.Issue8129" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Inheritdoc.Issue8129" - }, - { - "lang": "vb", - "value": "Inheritdoc.Issue8129" - } - ], - "level": 0.0, - "summary": "", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Inheritdoc_Issue8129", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inInterface": true, - "typePropertyName": "inInterface", - "id": "interfaces", - "children": [ - { - "uid": "BuildFromProject.Class1.IIssue8948", - "isExtensionMethod": false, - "parent": "BuildFromProject", - "href": "BuildFromProject.Class1.html", - "name": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.IIssue8948" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.IIssue8948" - }, - { - "lang": "vb", - "value": "Class1.IIssue8948" - } - ], - "level": 0.0, - "summary": "", - "type": "interface", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_IIssue8948", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromProject.IInheritdoc", - "isExtensionMethod": false, - "parent": "BuildFromProject", - "href": "BuildFromProject.IInheritdoc.html", - "name": [ - { - "lang": "csharp", - "value": "IInheritdoc" - }, - { - "lang": "vb", - "value": "IInheritdoc" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IInheritdoc" - }, - { - "lang": "vb", - "value": "IInheritdoc" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.IInheritdoc" - }, - { - "lang": "vb", - "value": "BuildFromProject.IInheritdoc" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "interface", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_IInheritdoc", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inEnum": true, - "typePropertyName": "inEnum", - "id": "enums", - "children": [ - { - "uid": "BuildFromProject.Class1.Issue9260", - "isExtensionMethod": false, - "parent": "BuildFromProject", - "href": "BuildFromProject.Class1.html", - "name": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject.Class1.Issue9260" - }, - { - "lang": "vb", - "value": "BuildFromProject.Class1.Issue9260" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Class1.Issue9260" - }, - { - "lang": "vb", - "value": "Class1.Issue9260" - } - ], - "level": 0.0, - "summary": "", - "type": "enum", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject_Class1_Issue9260", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromProject" - }, - { - "lang": "vb", - "value": "BuildFromProject" - } - ], - "type": "namespace", - "assemblies": [ - "BuildFromProject" - ], - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromProject.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromProject.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromProject", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json deleted file mode 100644 index b7b7875a81d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "uid": "BuildFromVBSourceCode.BaseClass1", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromVBSourceCode", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromVBSourceCode.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromVBSourceCode.BaseClass1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "WithDeclarationKeyword(Class1)" - }, - { - "lang": "vb", - "value": "WithDeclarationKeyword(Class1)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BaseClass1.WithDeclarationKeyword(Class1)" - }, - { - "lang": "vb", - "value": "BaseClass1.WithDeclarationKeyword(Class1)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public abstract DateTime WithDeclarationKeyword(Class1 keyword)" - }, - { - "lang": "vb", - "value": "Public MustOverride Function WithDeclarationKeyword(keyword As Class1) As Date" - } - ], - "parameters": [ - { - "id": "keyword", - "type": { - "uid": "BuildFromVBSourceCode.Class1", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.DateTime", - "name": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/vb/Class1.vb", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "WithDeclarationKeyword", - "path": "dotnet/vb/Class1.vb", - "startLine": 45.0, - "endLine": 0.0 - }, - "namespace": "BuildFromVBSourceCode", - "overload": { - "uid": "BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword*", - "name": [ - { - "lang": "csharp", - "value": "WithDeclarationKeyword" - }, - { - "lang": "vb", - "value": "WithDeclarationKeyword" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BaseClass1.WithDeclarationKeyword" - }, - { - "lang": "vb", - "value": "BaseClass1.WithDeclarationKeyword" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromVBSourceCode_BaseClass1_WithDeclarationKeyword_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromVBSourceCode_BaseClass1_WithDeclarationKeyword_BuildFromVBSourceCode_Class1_.md&value=---%0Auid%3A%20BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/vb/Class1.vb/#L46", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromVBSourceCode_BaseClass1_WithDeclarationKeyword_BuildFromVBSourceCode_Class1_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "BaseClass1" - }, - { - "lang": "vb", - "value": "BaseClass1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BaseClass1" - }, - { - "lang": "vb", - "value": "BaseClass1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.BaseClass1" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.BaseClass1" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/vb/Class1.vb", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "BaseClass1", - "path": "dotnet/vb/Class1.vb", - "startLine": 44.0, - "endLine": 0.0 - }, - "namespace": { - "uid": "BuildFromVBSourceCode", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromVBSourceCode.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

This is the BaseClass

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public abstract class BaseClass1" - }, - { - "lang": "vb", - "value": "Public MustInherit Class BaseClass1" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "derivedClasses": [ - { - "uid": "BuildFromVBSourceCode.Class1", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromVBSourceCode", - "href": "BuildFromVBSourceCode.Class1.html", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 2.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Finalize", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.finalize", - "name": [ - { - "lang": "csharp", - "value": "Finalize()" - }, - { - "lang": "vb", - "value": "Finalize()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Finalize()" - }, - { - "lang": "vb", - "value": "Object.Finalize()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Finalize()" - }, - { - "lang": "vb", - "value": "Object.Finalize()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Finalize()" - }, - { - "lang": "vb", - "value": "Finalize()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromVBSourceCode.BaseClass1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromVBSourceCode.BaseClass1.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromVBSourceCode_BaseClass1.md&value=---%0Auid%3A%20BuildFromVBSourceCode.BaseClass1%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/vb/Class1.vb/#L45", - "description": "This is the BaseClass", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromVBSourceCode_BaseClass1", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.Class1.html.view.verified.json deleted file mode 100644 index c5457d78f3c..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.Class1.html.view.verified.json +++ /dev/null @@ -1,1523 +0,0 @@ -{ - "uid": "BuildFromVBSourceCode.Class1", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "BuildFromVBSourceCode", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromVBSourceCode.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "BuildFromVBSourceCode.Class1.ValueClass", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromVBSourceCode.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ValueClass" - }, - { - "lang": "vb", - "value": "ValueClass" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.ValueClass" - }, - { - "lang": "vb", - "value": "Class1.ValueClass" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1.ValueClass" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1.ValueClass" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Class1 ValueClass" - }, - { - "lang": "vb", - "value": "Public ValueClass As Class1" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "BuildFromVBSourceCode.Class1", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/vb/Class1.vb", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ValueClass", - "path": "dotnet/vb/Class1.vb", - "startLine": 13.0, - "endLine": 0.0 - }, - "namespace": "BuildFromVBSourceCode", - "example": [], - "level": 0.0, - "type": "field", - "summary": "

This is a Value type

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromVBSourceCode_Class1_ValueClass.md&value=---%0Auid%3A%20BuildFromVBSourceCode.Class1.ValueClass%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/vb/Class1.vb/#L14", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromVBSourceCode_Class1_ValueClass", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "BuildFromVBSourceCode.Class1.Keyword", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromVBSourceCode.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Keyword" - }, - { - "lang": "vb", - "value": "Keyword" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Keyword" - }, - { - "lang": "vb", - "value": "Class1.Keyword" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1.Keyword" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1.Keyword" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "[Obsolete(\"This member is obsolete.\", true)]\npublic Class1 Keyword { get; }" - }, - { - "lang": "vb", - "value": "\nPublic ReadOnly Property Keyword As Class1" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "BuildFromVBSourceCode.Class1", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/vb/Class1.vb", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Keyword", - "path": "dotnet/vb/Class1.vb", - "startLine": 15.0, - "endLine": 0.0 - }, - "namespace": "BuildFromVBSourceCode", - "overload": { - "uid": "BuildFromVBSourceCode.Class1.Keyword*", - "name": [ - { - "lang": "csharp", - "value": "Keyword" - }, - { - "lang": "vb", - "value": "Keyword" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Keyword" - }, - { - "lang": "vb", - "value": "Class1.Keyword" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1.Keyword" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1.Keyword" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromVBSourceCode_Class1_Keyword_" - }, - "level": 0.0, - "attributes": [ - { - "type": "System.ObsoleteAttribute", - "ctor": "System.ObsoleteAttribute.#ctor(System.String,System.Boolean)", - "arguments": [ - { - "type": "System.String", - "value": "This member is obsolete." - }, - { - "type": "System.Boolean", - "value": true - } - ] - } - ], - "type": "property", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromVBSourceCode_Class1_Keyword.md&value=---%0Auid%3A%20BuildFromVBSourceCode.Class1.Keyword%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/vb/Class1.vb/#L16", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromVBSourceCode_Class1_Keyword", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "BuildFromVBSourceCode.Class1.Value(System.String)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromVBSourceCode.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Value(string)" - }, - { - "lang": "vb", - "value": "Value(String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Value(string)" - }, - { - "lang": "vb", - "value": "Class1.Value(String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1.Value(string)" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1.Value(String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public int Value(string name)" - }, - { - "lang": "vb", - "value": "Public Function Value(name As String) As Integer" - } - ], - "parameters": [ - { - "id": "name", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Name as the String\nvalue

\n" - } - ], - "return": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Returns\nAhooo

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/vb/Class1.vb", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Value", - "path": "dotnet/vb/Class1.vb", - "startLine": 36.0, - "endLine": 0.0 - }, - "namespace": "BuildFromVBSourceCode", - "example": [], - "overload": { - "uid": "BuildFromVBSourceCode.Class1.Value*", - "name": [ - { - "lang": "csharp", - "value": "Value" - }, - { - "lang": "vb", - "value": "Value" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.Value" - }, - { - "lang": "vb", - "value": "Class1.Value" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1.Value" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1.Value" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromVBSourceCode_Class1_Value_" - }, - "level": 0.0, - "type": "method", - "summary": "

This is a Function

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromVBSourceCode_Class1_Value_System_String_.md&value=---%0Auid%3A%20BuildFromVBSourceCode.Class1.Value(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/vb/Class1.vb/#L37", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromVBSourceCode_Class1_Value_System_String_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromVBSourceCode.Class1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromVBSourceCode.Class1", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "WithDeclarationKeyword(Class1)" - }, - { - "lang": "vb", - "value": "WithDeclarationKeyword(Class1)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.WithDeclarationKeyword(Class1)" - }, - { - "lang": "vb", - "value": "Class1.WithDeclarationKeyword(Class1)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public override DateTime WithDeclarationKeyword(Class1 keyword)" - }, - { - "lang": "vb", - "value": "Public Overrides Function WithDeclarationKeyword(keyword As Class1) As Date" - } - ], - "parameters": [ - { - "id": "keyword", - "type": { - "uid": "BuildFromVBSourceCode.Class1", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.DateTime", - "name": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/vb/Class1.vb", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "WithDeclarationKeyword", - "path": "dotnet/vb/Class1.vb", - "startLine": 25.0, - "endLine": 0.0 - }, - "namespace": "BuildFromVBSourceCode", - "example": [], - "overridden": { - "uid": "BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)", - "name": [ - { - "lang": "csharp", - "value": "WithDeclarationKeyword(Class1)" - }, - { - "lang": "vb", - "value": "WithDeclarationKeyword(Class1)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BaseClass1.WithDeclarationKeyword(Class1)" - }, - { - "lang": "vb", - "value": "BaseClass1.WithDeclarationKeyword(Class1)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "WithDeclarationKeyword(Class1)" - }, - { - "lang": "vb", - "value": "WithDeclarationKeyword(Class1)" - } - ] - }, - "overload": { - "uid": "BuildFromVBSourceCode.Class1.WithDeclarationKeyword*", - "name": [ - { - "lang": "csharp", - "value": "WithDeclarationKeyword" - }, - { - "lang": "vb", - "value": "WithDeclarationKeyword" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1.WithDeclarationKeyword" - }, - { - "lang": "vb", - "value": "Class1.WithDeclarationKeyword" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1.WithDeclarationKeyword" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1.WithDeclarationKeyword" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "BuildFromVBSourceCode_Class1_WithDeclarationKeyword_" - }, - "level": 0.0, - "type": "method", - "summary": "

What is Sub?

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromVBSourceCode_Class1_WithDeclarationKeyword_BuildFromVBSourceCode_Class1_.md&value=---%0Auid%3A%20BuildFromVBSourceCode.Class1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/vb/Class1.vb/#L26", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromVBSourceCode_Class1_WithDeclarationKeyword_BuildFromVBSourceCode_Class1_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/vb/Class1.vb", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Class1", - "path": "dotnet/vb/Class1.vb", - "startLine": 5.0, - "endLine": 0.0 - }, - "namespace": { - "uid": "BuildFromVBSourceCode", - "isEii": false, - "isExtensionMethod": false, - "href": "BuildFromVBSourceCode.html", - "name": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

This is summary from vb class...

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Class1 : BaseClass1" - }, - { - "lang": "vb", - "value": "Public Class Class1 Inherits BaseClass1" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - }, - { - "uid": "BuildFromVBSourceCode.BaseClass1", - "isEii": false, - "isExtensionMethod": false, - "parent": "BuildFromVBSourceCode", - "href": "BuildFromVBSourceCode.BaseClass1.html", - "name": [ - { - "lang": "csharp", - "value": "BaseClass1" - }, - { - "lang": "vb", - "value": "BaseClass1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BaseClass1" - }, - { - "lang": "vb", - "value": "BaseClass1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.BaseClass1" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.BaseClass1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 1.0 - } - ], - "level": 2.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Finalize", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.finalize", - "name": [ - { - "lang": "csharp", - "value": "Finalize()" - }, - { - "lang": "vb", - "value": "Finalize()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Finalize()" - }, - { - "lang": "vb", - "value": "Object.Finalize()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Finalize()" - }, - { - "lang": "vb", - "value": "Object.Finalize()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Finalize()" - }, - { - "lang": "vb", - "value": "Finalize()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromVBSourceCode.Class1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromVBSourceCode.Class1.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=BuildFromVBSourceCode_Class1.md&value=---%0Auid%3A%20BuildFromVBSourceCode.Class1%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/vb/Class1.vb/#L6", - "description": "This is summary from vb class...", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "BuildFromVBSourceCode_Class1", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.html.view.verified.json deleted file mode 100644 index f6bb64c3d8d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.html.view.verified.json +++ /dev/null @@ -1,207 +0,0 @@ -{ - "uid": "BuildFromVBSourceCode", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "BuildFromVBSourceCode.BaseClass1", - "isExtensionMethod": false, - "parent": "BuildFromVBSourceCode", - "href": "BuildFromVBSourceCode.BaseClass1.html", - "name": [ - { - "lang": "csharp", - "value": "BaseClass1" - }, - { - "lang": "vb", - "value": "BaseClass1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BaseClass1" - }, - { - "lang": "vb", - "value": "BaseClass1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.BaseClass1" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.BaseClass1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

This is the BaseClass

\n", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromVBSourceCode_BaseClass1", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "BuildFromVBSourceCode.Class1", - "isExtensionMethod": false, - "parent": "BuildFromVBSourceCode", - "href": "BuildFromVBSourceCode.Class1.html", - "name": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Class1" - }, - { - "lang": "vb", - "value": "Class1" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode.Class1" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode.Class1" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

This is summary from vb class...

\n", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromVBSourceCode_Class1", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "BuildFromVBSourceCode" - }, - { - "lang": "vb", - "value": "BuildFromVBSourceCode" - } - ], - "type": "namespace", - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/BuildFromVBSourceCode.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/BuildFromVBSourceCode.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "BuildFromVBSourceCode", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Cat-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Cat-2.html.view.verified.json deleted file mode 100644 index e302d5efb86..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Cat-2.html.view.verified.json +++ /dev/null @@ -1,4317 +0,0 @@ -{ - "uid": "CatLibrary.Cat`2", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CatLibrary.Cat`2.#ctor", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Cat()" - }, - { - "lang": "vb", - "value": "New()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Cat()" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).New()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Cat()" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).New()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Cat()" - }, - { - "lang": "vb", - "value": "Public Sub New()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 124.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Cat" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Cat_2__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "

Default constructor.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2__ctor.md&value=---%0Auid%3A%20CatLibrary.Cat%602.%23ctor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L125", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2__ctor", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Cat`2.#ctor(System.String,System.Int32@,System.String,System.Boolean)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Cat(string, out int, string, bool)" - }, - { - "lang": "vb", - "value": "New(String, Integer, String, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Cat(string, out int, string, bool)" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).New(String, Integer, String, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Cat(string, out int, string, bool)" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).New(String, Integer, String, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Cat(string nickName, out int age, string realName, bool isHealthy)" - }, - { - "lang": "vb", - "value": "Public Sub New(nickName As String, age As Integer, realName As String, isHealthy As Boolean)" - } - ], - "parameters": [ - { - "id": "nickName", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

it's string type.

\n" - }, - { - "id": "age", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

It's an out and ref parameter.

\n" - }, - { - "id": "realName", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

It's an out paramter.

\n" - }, - { - "id": "isHealthy", - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

It's an in parameter.

\n" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 139.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Cat" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Cat_2__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "

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

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2__ctor_System_String_System_Int32__System_String_System_Boolean_.md&value=---%0Auid%3A%20CatLibrary.Cat%602.%23ctor(System.String%2CSystem.Int32%40%2CSystem.String%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L140", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2__ctor_System_String_System_Int32__System_String_System_Boolean_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Cat`2.#ctor(`0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Cat(T)" - }, - { - "lang": "vb", - "value": "New(T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Cat(T)" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).New(T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Cat(T)" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).New(T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Cat(T ownType)" - }, - { - "lang": "vb", - "value": "Public Sub New(ownType As T)" - } - ], - "parameters": [ - { - "id": "ownType", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This parameter type defined by class.

\n" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 130.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Cat" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Cat_2__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "

Constructor with one generic parameter.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2__ctor__0_.md&value=---%0Auid%3A%20CatLibrary.Cat%602.%23ctor(%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L131", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2__ctor__0_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CatLibrary.Cat`2.isHealthy", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "isHealthy" - }, - { - "lang": "vb", - "value": "isHealthy" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.isHealthy" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).isHealthy" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.isHealthy" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).isHealthy" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "[ContextStatic]\n[NonSerialized]\n[Obsolete]\npublic bool isHealthy" - }, - { - "lang": "vb", - "value": "\n\n\nPublic isHealthy As Boolean" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "isHealthy", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 236.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "level": 0.0, - "attributes": [ - { - "type": "System.ContextStaticAttribute", - "ctor": "System.ContextStaticAttribute.#ctor", - "arguments": [] - }, - { - "type": "System.NonSerializedAttribute", - "ctor": "System.NonSerializedAttribute.#ctor", - "arguments": [] - }, - { - "type": "System.ObsoleteAttribute", - "ctor": "System.ObsoleteAttribute.#ctor", - "arguments": [] - } - ], - "type": "field", - "summary": "

Field with attribute.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_isHealthy.md&value=---%0Auid%3A%20CatLibrary.Cat%602.isHealthy%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L237", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_isHealthy", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CatLibrary.Cat`2.Age", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Age" - }, - { - "lang": "vb", - "value": "Age" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Age" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).Age" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Age" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).Age" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "[Obsolete]\nprotected int Age { get; set; }" - }, - { - "lang": "vb", - "value": "\nProtected Property Age As Integer" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Age", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 215.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.Age*", - "name": [ - { - "lang": "csharp", - "value": "Age" - }, - { - "lang": "vb", - "value": "Age" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Age" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).Age" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Age" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).Age" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Cat_2_Age_" - }, - "level": 0.0, - "attributes": [ - { - "type": "System.ObsoleteAttribute", - "ctor": "System.ObsoleteAttribute.#ctor", - "arguments": [] - } - ], - "type": "property", - "summary": "

Hint cat's age.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_Age.md&value=---%0Auid%3A%20CatLibrary.Cat%602.Age%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L216", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_Age", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Cat`2.Item(System.String)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "this[string]" - }, - { - "lang": "vb", - "value": "this[](String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.this[string]" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).this[](String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.this[string]" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).this[](String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public int this[string a] { protected get; set; }" - }, - { - "lang": "vb", - "value": "Public Default Property this[](a As String) As Integer" - } - ], - "parameters": [ - { - "id": "a", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Cat's name.

\n" - } - ], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Cat's number.

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "this[]", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 206.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.Item*", - "name": [ - { - "lang": "csharp", - "value": "this" - }, - { - "lang": "vb", - "value": "this[]" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.this" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).this[]" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.this" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).this[]" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Cat_2_Item_" - }, - "level": 0.0, - "type": "property", - "summary": "

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

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_Item_System_String_.md&value=---%0Auid%3A%20CatLibrary.Cat%602.Item(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L207", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_Item_System_String_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Cat`2.Name", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Name" - }, - { - "lang": "vb", - "value": "Name" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Name" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).Name" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Name" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).Name" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public string Name { get; }" - }, - { - "lang": "vb", - "value": "Public ReadOnly Property Name As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Name", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 260.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.Name*", - "name": [ - { - "lang": "csharp", - "value": "Name" - }, - { - "lang": "vb", - "value": "Name" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Name" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).Name" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Name" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).Name" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Cat_2_Name_" - }, - "level": 0.0, - "implements": [ - { - "uid": "CatLibrary.IAnimal.Name", - "name": [ - { - "lang": "csharp", - "value": "Name" - }, - { - "lang": "vb", - "value": "Name" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Name" - }, - { - "lang": "vb", - "value": "IAnimal.Name" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Name" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Name" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - ], - "type": "property", - "summary": "

EII property.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_Name.md&value=---%0Auid%3A%20CatLibrary.Cat%602.Name%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L261", - "description": "", - "remarks": "", - "conceptual": "", - "seealso": [], - "id": "CatLibrary_Cat_2_Name", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CatLibrary.Cat`2.CalculateFood(System.DateTime)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Override CalculateFood Name" - }, - { - "lang": "vb", - "value": "CalculateFood(Date)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.CalculateFood(DateTime)" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).CalculateFood(Date)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.CalculateFood(System.DateTime)" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).CalculateFood(Date)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Dictionary> CalculateFood(DateTime date)" - }, - { - "lang": "vb", - "value": "Public Function CalculateFood([date] As Date) As Dictionary(Of String, List(Of Integer))" - } - ], - "parameters": [ - { - "id": "date", - "type": { - "uid": "System.DateTime", - "name": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.DateTime" - }, - { - "lang": "vb", - "value": "Date" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This is overridden description for a parameter. id must be specified.

\n" - } - ], - "return": { - "type": { - "uid": "System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{System.Int32}}", - "definition": "System.Collections.Generic.Dictionary`2", - "name": [ - { - "lang": "csharp", - "value": "Dictionary>" - }, - { - "lang": "vb", - "value": "Dictionary(Of String, List(Of Integer))" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Dictionary>" - }, - { - "lang": "vb", - "value": "Dictionary(Of String, List(Of Integer))" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Collections.Generic.Dictionary>" - }, - { - "lang": "vb", - "value": "System.Collections.Generic.Dictionary(Of String, System.Collections.Generic.List(Of Integer))" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Dictionary<string, List<int>>" - }, - { - "lang": "vb", - "value": "Dictionary(Of String, List(Of Integer))" - } - ] - }, - "description": "

It's overridden description for return. type must be specified.

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "CalculateFood", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 147.0, - "endLine": 0.0 - }, - "documentation": { - "remote": { - "path": "samples/seed/specs/Cat.CalculateFood.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "path": "specs/Cat.CalculateFood.md", - "startLine": 1.0, - "endLine": 15.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.CalculateFood*", - "name": [ - { - "lang": "csharp", - "value": "CalculateFood" - }, - { - "lang": "vb", - "value": "CalculateFood" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.CalculateFood" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).CalculateFood" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.CalculateFood" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).CalculateFood" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Cat_2_CalculateFood_" - }, - "exceptions": [ - { - "type": { - "uid": "System.ArgumentException", - "name": [ - { - "lang": "csharp", - "value": "ArgumentException" - }, - { - "lang": "vb", - "value": "ArgumentException" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ArgumentException" - }, - { - "lang": "vb", - "value": "ArgumentException" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ArgumentException" - }, - { - "lang": "vb", - "value": "System.ArgumentException" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This is an overridden argument exception. you can add additional exception by adding different exception type.

\n" - } - ], - "level": 0.0, - "conceptual": "\n

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.

\n", - "type": "method", - "summary": "

It's an overridden summary in markdown format

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/specs/Cat.CalculateFood.md/#L2", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L148", - "description": "", - "remarks": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_CalculateFood_System_DateTime_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Cat`2.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Equals(object)" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Equals(object)" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public override bool Equals(object obj)" - }, - { - "lang": "vb", - "value": "Public Overrides Function Equals(obj As Object) As Boolean" - } - ], - "parameters": [ - { - "id": "obj", - "type": { - "uid": "System.Object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Can pass any class type.

\n" - } - ], - "return": { - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

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

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Equals", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 167.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overridden": { - "uid": "System.Object.Equals(System.Object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ] - }, - "overload": { - "uid": "CatLibrary.Cat`2.Equals*", - "name": [ - { - "lang": "csharp", - "value": "Equals" - }, - { - "lang": "vb", - "value": "Equals" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Equals" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).Equals" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Equals" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).Equals" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Cat_2_Equals_" - }, - "level": 0.0, - "type": "method", - "summary": "

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

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_Equals_System_Object_.md&value=---%0Auid%3A%20CatLibrary.Cat%602.Equals(System.Object)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L168", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_Equals_System_Object_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Cat`2.GetTailLength(System.Int32*,System.Object[])", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "GetTailLength(int*, params object[])" - }, - { - "lang": "vb", - "value": "GetTailLength(Integer*, ParamArray Object())" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.GetTailLength(int*, params object[])" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).GetTailLength(Integer*, ParamArray Object())" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.GetTailLength(int*, params object[])" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).GetTailLength(Integer*, ParamArray Object())" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public long GetTailLength(int* catName, params object[] parameters)" - }, - { - "lang": "vb", - "value": "Public Function GetTailLength(catName As Integer*, ParamArray parameters As Object()) As Long" - } - ], - "parameters": [ - { - "id": "catName", - "type": { - "uid": "System.Int32*", - "name": [ - { - "lang": "csharp", - "value": "int*" - }, - { - "lang": "vb", - "value": "Integer*" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int*" - }, - { - "lang": "vb", - "value": "Integer*" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int*" - }, - { - "lang": "vb", - "value": "Integer*" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "int*" - }, - { - "lang": "vb", - "value": "Integer*" - } - ] - }, - "description": "

Thie represent for cat name length.

\n" - }, - { - "id": "parameters", - "type": { - "uid": "System.Object[]", - "name": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ] - }, - "description": "

Optional parameters.

\n" - } - ], - "return": { - "type": { - "uid": "System.Int64", - "name": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Return cat tail's length.

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "GetTailLength", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 176.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.GetTailLength*", - "name": [ - { - "lang": "csharp", - "value": "GetTailLength" - }, - { - "lang": "vb", - "value": "GetTailLength" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.GetTailLength" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).GetTailLength" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.GetTailLength" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).GetTailLength" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Cat_2_GetTailLength_" - }, - "level": 0.0, - "type": "method", - "summary": "

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

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_GetTailLength_System_Int32__System_Object___.md&value=---%0Auid%3A%20CatLibrary.Cat%602.GetTailLength(System.Int32*%2CSystem.Object%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L177", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_GetTailLength_System_Int32__System_Object___", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Cat`2.Jump(`0,`1,System.Boolean@)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Jump(T, K, ref bool)" - }, - { - "lang": "vb", - "value": "Jump(T, K, Boolean)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Jump(T, K, ref bool)" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).Jump(T, K, Boolean)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Jump(T, K, ref bool)" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).Jump(T, K, Boolean)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "[Conditional(\"Debug\")]\npublic void Jump(T ownType, K anotherOwnType, ref bool cheat)" - }, - { - "lang": "vb", - "value": "\nPublic Sub Jump(ownType As T, anotherOwnType As K, cheat As Boolean)" - } - ], - "parameters": [ - { - "id": "ownType", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Type come from class define.

\n" - }, - { - "id": "anotherOwnType", - "type": { - "uid": "{K}", - "definition": "K", - "name": [ - { - "lang": "csharp", - "value": "K" - }, - { - "lang": "vb", - "value": "K" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "K" - }, - { - "lang": "vb", - "value": "K" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "K" - }, - { - "lang": "vb", - "value": "K" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Type come from class define.

\n" - }, - { - "id": "cheat", - "type": { - "uid": "System.Boolean", - "name": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "bool" - }, - { - "lang": "vb", - "value": "Boolean" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Hint whether this cat has cheat mode.

\n" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Jump", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 156.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.Jump*", - "name": [ - { - "lang": "csharp", - "value": "Jump" - }, - { - "lang": "vb", - "value": "Jump" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.Jump" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).Jump" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.Jump" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).Jump" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Cat_2_Jump_" - }, - "exceptions": [ - { - "type": { - "uid": "System.ArgumentException", - "name": [ - { - "lang": "csharp", - "value": "ArgumentException" - }, - { - "lang": "vb", - "value": "ArgumentException" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ArgumentException" - }, - { - "lang": "vb", - "value": "ArgumentException" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ArgumentException" - }, - { - "lang": "vb", - "value": "System.ArgumentException" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This is an argument exception

\n" - } - ], - "level": 0.0, - "attributes": [ - { - "type": "System.Diagnostics.ConditionalAttribute", - "ctor": "System.Diagnostics.ConditionalAttribute.#ctor(System.String)", - "arguments": [ - { - "type": "System.String", - "value": "Debug" - } - ] - } - ], - "type": "method", - "summary": "

This method have attribute above it.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_Jump__0__1_System_Boolean__.md&value=---%0Auid%3A%20CatLibrary.Cat%602.Jump(%600%2C%601%2CSystem.Boolean%40)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L157", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_Jump__0__1_System_Boolean__", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inEvent": true, - "typePropertyName": "inEvent", - "id": "events", - "children": [ - { - "uid": "CatLibrary.Cat`2.ownEat", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ownEat" - }, - { - "lang": "vb", - "value": "ownEat" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.ownEat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).ownEat" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.ownEat" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).ownEat" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "[Obsolete(\"This _event handler_ is deprecated.\")]\npublic event EventHandler ownEat" - }, - { - "lang": "vb", - "value": "\nPublic Event ownEat As EventHandler" - } - ], - "return": null, - "eventType": { - "type": { - "uid": "System.EventHandler", - "name": [ - { - "lang": "csharp", - "value": "EventHandler" - }, - { - "lang": "vb", - "value": "EventHandler" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "EventHandler" - }, - { - "lang": "vb", - "value": "EventHandler" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.EventHandler" - }, - { - "lang": "vb", - "value": "System.EventHandler" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ownEat", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 227.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "level": 0.0, - "attributes": [ - { - "type": "System.ObsoleteAttribute", - "ctor": "System.ObsoleteAttribute.#ctor(System.String)", - "arguments": [ - { - "type": "System.String", - "value": "This _event handler_ is deprecated." - } - ] - } - ], - "type": "event", - "summary": "

Eat event of this cat

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_ownEat.md&value=---%0Auid%3A%20CatLibrary.Cat%602.ownEat%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L228", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_ownEat", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inOperator": true, - "typePropertyName": "inOperator", - "id": "operators", - "children": [ - { - "uid": "CatLibrary.Cat`2.op_Addition(CatLibrary.Cat{`0,`1},System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator +(Cat, int)" - }, - { - "lang": "vb", - "value": "+(Cat(Of T, K), Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.operator +(Cat, int)" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).+(Cat(Of T, K), Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.operator +(CatLibrary.Cat, int)" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).+(CatLibrary.Cat(Of T, K), Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static int operator +(Cat lsr, int rsr)" - }, - { - "lang": "vb", - "value": "Public Shared Operator +(lsr As Cat(Of T, K), rsr As Integer) As Integer" - } - ], - "parameters": [ - { - "id": "lsr", - "type": { - "uid": "CatLibrary.Cat`2", - "name": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Cat<T, K>" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ] - }, - "description": "

..

\n" - }, - { - "id": "rsr", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

~~

\n" - } - ], - "return": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Result with int type.

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Addition", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 185.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.op_Addition*", - "name": [ - { - "lang": "csharp", - "value": "operator +" - }, - { - "lang": "vb", - "value": "+" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.operator +" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).+" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.operator +" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).+" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator +" - } - ], - "id": "CatLibrary_Cat_2_op_Addition_" - }, - "level": 0.0, - "type": "operator", - "summary": "

Addition operator of this class.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_op_Addition_CatLibrary_Cat__0__1__System_Int32_.md&value=---%0Auid%3A%20CatLibrary.Cat%602.op_Addition(CatLibrary.Cat%7B%600%2C%601%7D%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L186", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_op_Addition_CatLibrary_Cat__0__1__System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Cat`2.op_Explicit(CatLibrary.Cat{`0,`1})~CatLibrary.Tom", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "explicit operator Tom(Cat)" - }, - { - "lang": "vb", - "value": "CType(Cat(Of T, K))" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.explicit operator Tom(Cat)" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).CType(Cat(Of T, K))" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.explicit operator CatLibrary.Tom(CatLibrary.Cat)" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).CType(CatLibrary.Cat(Of T, K))" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static explicit operator Tom(Cat src)" - }, - { - "lang": "vb", - "value": "Public Shared Narrowing Operator CType(src As Cat(Of T, K)) As Tom" - } - ], - "parameters": [ - { - "id": "src", - "type": { - "uid": "CatLibrary.Cat`2", - "name": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Cat<T, K>" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ] - }, - "description": "

Instance of this class.

\n" - } - ], - "return": { - "type": { - "uid": "CatLibrary.Tom", - "name": [ - { - "lang": "csharp", - "value": "Tom" - }, - { - "lang": "vb", - "value": "Tom" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Tom" - }, - { - "lang": "vb", - "value": "Tom" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Tom" - }, - { - "lang": "vb", - "value": "CatLibrary.Tom" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Advanced class type of cat.

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Explicit", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 198.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.op_Explicit*", - "name": [ - { - "lang": "csharp", - "value": "explicit operator" - }, - { - "lang": "vb", - "value": "CType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.explicit operator" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).CType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.explicit operator" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).CType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "explicit operator" - } - ], - "id": "CatLibrary_Cat_2_op_Explicit_" - }, - "level": 0.0, - "type": "operator", - "summary": "

Expilicit operator of this class.

\n

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

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_op_Explicit_CatLibrary_Cat__0__1___CatLibrary_Tom.md&value=---%0Auid%3A%20CatLibrary.Cat%602.op_Explicit(CatLibrary.Cat%7B%600%2C%601%7D)~CatLibrary.Tom%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L199", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_op_Explicit_CatLibrary_Cat__0__1___CatLibrary_Tom", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Cat`2.op_Subtraction(CatLibrary.Cat{`0,`1},System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Cat`2", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "operator -(Cat, int)" - }, - { - "lang": "vb", - "value": "-(Cat(Of T, K), Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.operator -(Cat, int)" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).-(Cat(Of T, K), Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.operator -(CatLibrary.Cat, int)" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).-(CatLibrary.Cat(Of T, K), Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static int operator -(Cat lsr, int rsr)" - }, - { - "lang": "vb", - "value": "Public Shared Operator -(lsr As Cat(Of T, K), rsr As Integer) As Integer" - } - ], - "parameters": [ - { - "id": "lsr", - "type": { - "uid": "CatLibrary.Cat`2", - "name": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Cat<T, K>" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ] - } - }, - { - "id": "rsr", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "op_Subtraction", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 190.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Cat`2.op_Subtraction*", - "name": [ - { - "lang": "csharp", - "value": "operator -" - }, - { - "lang": "vb", - "value": "-" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat.operator -" - }, - { - "lang": "vb", - "value": "Cat(Of T, K).-" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat.operator -" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K).-" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "operator -" - } - ], - "id": "CatLibrary_Cat_2_op_Subtraction_" - }, - "level": 0.0, - "type": "operator", - "summary": "

Similar with operaotr +, refer to that topic.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Cat_2_op_Subtraction_CatLibrary_Cat__0__1__System_Int32_.md&value=---%0Auid%3A%20CatLibrary.Cat%602.op_Subtraction(CatLibrary.Cat%7B%600%2C%601%7D%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L191", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Cat_2_op_Subtraction_CatLibrary_Cat__0__1__System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K)" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Cat", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 114.0, - "endLine": 0.0 - }, - "documentation": { - "remote": { - "path": "samples/seed/specs/Cat.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "path": "specs/Cat.md", - "startLine": 1.0, - "endLine": 4.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

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", - "remarks": "

THIS is remarks overridden in MARKDWON file

\n", - "example": [ - "

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" - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "[Serializable]\n[Obsolete]\npublic class Cat : ICat, IAnimal where T : class, new() where K : struct" - }, - { - "lang": "vb", - "value": "\n\nPublic Class Cat(Of T As {Class, New}, K As Structure) Implements ICat, IAnimal" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "

This type should be class and can new instance.

\n" - }, - { - "id": "K", - "description": "

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

\n" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "implements": [ - { - "uid": "CatLibrary.ICat", - "name": [ - { - "lang": "csharp", - "value": "ICat" - }, - { - "lang": "vb", - "value": "ICat" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICat" - }, - { - "lang": "vb", - "value": "ICat" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICat" - }, - { - "lang": "vb", - "value": "CatLibrary.ICat" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - { - "uid": "CatLibrary.IAnimal", - "name": [ - { - "lang": "csharp", - "value": "IAnimal" - }, - { - "lang": "vb", - "value": "IAnimal" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal" - }, - { - "lang": "vb", - "value": "IAnimal" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "extensionMethods": [ - { - "uid": "CatLibrary.ICat.CatLibrary.ICatExtension.Play(CatLibrary.Core.ContainersRefType.ColorType)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.ICatExtension", - "definition": "CatLibrary.ICatExtension.Play(CatLibrary.ICat,CatLibrary.Core.ContainersRefType.ColorType)", - "href": "CatLibrary.ICatExtension.html#CatLibrary_ICatExtension_Play_CatLibrary_ICat_CatLibrary_Core_ContainersRefType_ColorType_", - "name": [ - { - "lang": "csharp", - "value": "Play(ICat, ColorType)" - }, - { - "lang": "vb", - "value": "Play(ICat, ColorType)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICatExtension.Play(ICat, ContainersRefType.ColorType)" - }, - { - "lang": "vb", - "value": "ICatExtension.Play(ICat, ContainersRefType.ColorType)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICatExtension.Play(CatLibrary.ICat, CatLibrary.Core.ContainersRefType.ColorType)" - }, - { - "lang": "vb", - "value": "CatLibrary.ICatExtension.Play(CatLibrary.ICat, CatLibrary.Core.ContainersRefType.ColorType)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Play(ICat, ColorType)" - }, - { - "lang": "vb", - "value": "Play(ICat, ColorType)" - } - ], - "level": 0.0 - }, - { - "uid": "CatLibrary.ICat.CatLibrary.ICatExtension.Sleep(System.Int64)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.ICatExtension", - "definition": "CatLibrary.ICatExtension.Sleep(CatLibrary.ICat,System.Int64)", - "href": "CatLibrary.ICatExtension.html#CatLibrary_ICatExtension_Sleep_CatLibrary_ICat_System_Int64_", - "name": [ - { - "lang": "csharp", - "value": "Sleep(ICat, long)" - }, - { - "lang": "vb", - "value": "Sleep(ICat, Long)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICatExtension.Sleep(ICat, long)" - }, - { - "lang": "vb", - "value": "ICatExtension.Sleep(ICat, Long)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICatExtension.Sleep(CatLibrary.ICat, long)" - }, - { - "lang": "vb", - "value": "CatLibrary.ICatExtension.Sleep(CatLibrary.ICat, Long)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Sleep(ICat, long)" - }, - { - "lang": "vb", - "value": "Sleep(ICat, Long)" - } - ], - "level": 0.0 - } - ], - "conceptual": "\n

This is a class talking about CAT.

\n
\n

NOTE\nThis is a CAT class

\n
\n

Refer to to see other animals.

\n", - "attributes": [ - { - "type": "System.SerializableAttribute", - "ctor": "System.SerializableAttribute.#ctor", - "arguments": [] - }, - { - "type": "System.ObsoleteAttribute", - "ctor": "System.ObsoleteAttribute.#ctor", - "arguments": [] - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Cat-2.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Cat-2.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/specs/Cat.md/#L2", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L115", - "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", - "seealso": [], - "id": "CatLibrary_Cat_2", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.CatException-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.CatException-1.html.view.verified.json deleted file mode 100644 index 23052f25a53..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.CatException-1.html.view.verified.json +++ /dev/null @@ -1,1229 +0,0 @@ -{ - "uid": "CatLibrary.CatException`1", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CatException" - }, - { - "lang": "vb", - "value": "CatException(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatException" - }, - { - "lang": "vb", - "value": "CatException(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.CatException" - }, - { - "lang": "vb", - "value": "CatLibrary.CatException(Of T)" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "CatException", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 322.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class CatException : Exception, ISerializable" - }, - { - "lang": "vb", - "value": "Public Class CatException(Of T) Inherits Exception Implements ISerializable" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - }, - { - "uid": "System.Exception", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception", - "name": [ - { - "lang": "csharp", - "value": "Exception" - }, - { - "lang": "vb", - "value": "Exception" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception" - }, - { - "lang": "vb", - "value": "Exception" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception" - }, - { - "lang": "vb", - "value": "System.Exception" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 1.0 - } - ], - "level": 2.0, - "implements": [ - { - "uid": "System.Runtime.Serialization.ISerializable", - "name": [ - { - "lang": "csharp", - "value": "ISerializable" - }, - { - "lang": "vb", - "value": "ISerializable" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ISerializable" - }, - { - "lang": "vb", - "value": "ISerializable" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Runtime.Serialization.ISerializable" - }, - { - "lang": "vb", - "value": "System.Runtime.Serialization.ISerializable" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - ], - "inheritedMembers": [ - { - "uid": "System.Exception.GetBaseException", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception", - "name": [ - { - "lang": "csharp", - "value": "GetBaseException()" - }, - { - "lang": "vb", - "value": "GetBaseException()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.GetBaseException()" - }, - { - "lang": "vb", - "value": "Exception.GetBaseException()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.GetBaseException()" - }, - { - "lang": "vb", - "value": "System.Exception.GetBaseException()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetBaseException()" - }, - { - "lang": "vb", - "value": "GetBaseException()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata", - "name": [ - { - "lang": "csharp", - "value": "GetObjectData(SerializationInfo, StreamingContext)" - }, - { - "lang": "vb", - "value": "GetObjectData(SerializationInfo, StreamingContext)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.GetObjectData(SerializationInfo, StreamingContext)" - }, - { - "lang": "vb", - "value": "Exception.GetObjectData(SerializationInfo, StreamingContext)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" - }, - { - "lang": "vb", - "value": "System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetObjectData(SerializationInfo, StreamingContext)" - }, - { - "lang": "vb", - "value": "GetObjectData(SerializationInfo, StreamingContext)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.GetType()" - }, - { - "lang": "vb", - "value": "Exception.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.GetType()" - }, - { - "lang": "vb", - "value": "System.Exception.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.ToString()" - }, - { - "lang": "vb", - "value": "Exception.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.ToString()" - }, - { - "lang": "vb", - "value": "System.Exception.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.Data", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.data", - "name": [ - { - "lang": "csharp", - "value": "Data" - }, - { - "lang": "vb", - "value": "Data" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.Data" - }, - { - "lang": "vb", - "value": "Exception.Data" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.Data" - }, - { - "lang": "vb", - "value": "System.Exception.Data" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.HelpLink", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.helplink", - "name": [ - { - "lang": "csharp", - "value": "HelpLink" - }, - { - "lang": "vb", - "value": "HelpLink" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.HelpLink" - }, - { - "lang": "vb", - "value": "Exception.HelpLink" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.HelpLink" - }, - { - "lang": "vb", - "value": "System.Exception.HelpLink" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.HResult", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.hresult", - "name": [ - { - "lang": "csharp", - "value": "HResult" - }, - { - "lang": "vb", - "value": "HResult" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.HResult" - }, - { - "lang": "vb", - "value": "Exception.HResult" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.HResult" - }, - { - "lang": "vb", - "value": "System.Exception.HResult" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.InnerException", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception", - "name": [ - { - "lang": "csharp", - "value": "InnerException" - }, - { - "lang": "vb", - "value": "InnerException" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.InnerException" - }, - { - "lang": "vb", - "value": "Exception.InnerException" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.InnerException" - }, - { - "lang": "vb", - "value": "System.Exception.InnerException" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.Message", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.message", - "name": [ - { - "lang": "csharp", - "value": "Message" - }, - { - "lang": "vb", - "value": "Message" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.Message" - }, - { - "lang": "vb", - "value": "Exception.Message" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.Message" - }, - { - "lang": "vb", - "value": "System.Exception.Message" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.Source", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.source", - "name": [ - { - "lang": "csharp", - "value": "Source" - }, - { - "lang": "vb", - "value": "Source" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.Source" - }, - { - "lang": "vb", - "value": "Exception.Source" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.Source" - }, - { - "lang": "vb", - "value": "System.Exception.Source" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.StackTrace", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace", - "name": [ - { - "lang": "csharp", - "value": "StackTrace" - }, - { - "lang": "vb", - "value": "StackTrace" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.StackTrace" - }, - { - "lang": "vb", - "value": "Exception.StackTrace" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.StackTrace" - }, - { - "lang": "vb", - "value": "System.Exception.StackTrace" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.TargetSite", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite", - "name": [ - { - "lang": "csharp", - "value": "TargetSite" - }, - { - "lang": "vb", - "value": "TargetSite" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.TargetSite" - }, - { - "lang": "vb", - "value": "Exception.TargetSite" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.TargetSite" - }, - { - "lang": "vb", - "value": "System.Exception.TargetSite" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - { - "uid": "System.Exception.SerializeObjectState", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Exception", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate", - "name": [ - { - "lang": "csharp", - "value": "SerializeObjectState" - }, - { - "lang": "vb", - "value": "SerializeObjectState" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Exception.SerializeObjectState" - }, - { - "lang": "vb", - "value": "Exception.SerializeObjectState" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Exception.SerializeObjectState" - }, - { - "lang": "vb", - "value": "System.Exception.SerializeObjectState" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.CatException-1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.CatException-1.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_CatException_1.md&value=---%0Auid%3A%20CatLibrary.CatException%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L323", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "example": "", - "seealso": [], - "id": "CatLibrary_CatException_1", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Complex-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Complex-2.html.view.verified.json deleted file mode 100644 index 3dd47f43ed2..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Complex-2.html.view.verified.json +++ /dev/null @@ -1,600 +0,0 @@ -{ - "uid": "CatLibrary.Complex`2", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Complex" - }, - { - "lang": "vb", - "value": "Complex(Of T, J)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Complex" - }, - { - "lang": "vb", - "value": "Complex(Of T, J)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Complex" - }, - { - "lang": "vb", - "value": "CatLibrary.Complex(Of T, J)" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Complex", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 280.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Complex" - }, - { - "lang": "vb", - "value": "Public Class Complex(Of T, J)" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "" - }, - { - "id": "J", - "description": "" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Complex-2.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Complex-2.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Complex_2.md&value=---%0Auid%3A%20CatLibrary.Complex%602%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L281", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Complex_2", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json deleted file mode 100644 index 8dc4df68705..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json +++ /dev/null @@ -1,607 +0,0 @@ -{ - "uid": "CatLibrary.Core.ContainersRefType.ColorType", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "children": [ - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CatLibrary.Core.ContainersRefType.ColorType.Red", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Core.ContainersRefType.ColorType", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Red" - }, - { - "lang": "vb", - "value": "Red" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType.Red" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType.Red" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ColorType.Red" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ColorType.Red" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "Red = 0" - }, - { - "lang": "vb", - "value": "Red = 0" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "CatLibrary.Core.ContainersRefType.ColorType", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Red", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 28.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": "CatLibrary.Core", - "example": [], - "level": 0.0, - "type": "field", - "summary": "

red

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_ColorType_Red.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.ColorType.Red%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L29", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ColorType_Red", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Core.ContainersRefType.ColorType.Blue", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Core.ContainersRefType.ColorType", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Blue" - }, - { - "lang": "vb", - "value": "Blue" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType.Blue" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType.Blue" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ColorType.Blue" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ColorType.Blue" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "Blue = 1" - }, - { - "lang": "vb", - "value": "Blue = 1" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "CatLibrary.Core.ContainersRefType.ColorType", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Blue", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 32.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": "CatLibrary.Core", - "example": [], - "level": 0.0, - "type": "field", - "summary": "

blue

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_ColorType_Blue.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.ColorType.Blue%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L33", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ColorType_Blue", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Core.ContainersRefType.ColorType.Yellow", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Core.ContainersRefType.ColorType", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Yellow" - }, - { - "lang": "vb", - "value": "Yellow" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType.Yellow" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType.Yellow" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ColorType.Yellow" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ColorType.Yellow" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "Yellow = 2" - }, - { - "lang": "vb", - "value": "Yellow = 2" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "CatLibrary.Core.ContainersRefType.ColorType", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Yellow", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 36.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": "CatLibrary.Core", - "example": [], - "level": 0.0, - "type": "field", - "summary": "

yellow

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_ColorType_Yellow.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.ColorType.Yellow%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L37", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ColorType_Yellow", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - } - ], - "type": "enum", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ColorType", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 23.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "summary": "

Enumeration ColorType

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public enum ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "Public Enum ContainersRefType.ColorType" - } - ] - }, - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Core.ContainersRefType.ColorType.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Core.ContainersRefType.ColorType.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_ColorType.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.ColorType%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L24", - "description": "Enumeration ColorType", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ColorType", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": false, - "inEnum": true, - "isEnum": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json deleted file mode 100644 index 452dbcd0bd9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json +++ /dev/null @@ -1,590 +0,0 @@ -{ - "uid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeChild" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeChild" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeChild" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeChild" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ContainersRefTypeChild", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 79.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class ContainersRefType.ContainersRefTypeChild" - }, - { - "lang": "vb", - "value": "Public Class ContainersRefType.ContainersRefTypeChild" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_ContainersRefTypeChild.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.ContainersRefTypeChild%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L80", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ContainersRefTypeChild", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json deleted file mode 100644 index a4dd8ff2a29..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json +++ /dev/null @@ -1,193 +0,0 @@ -{ - "uid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeChildInterface" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeChildInterface" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeChildInterface" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeChildInterface" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface" - } - ], - "type": "interface", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ContainersRefTypeChildInterface", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 73.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public interface ContainersRefType.ContainersRefTypeChildInterface" - }, - { - "lang": "vb", - "value": "Public Interface ContainersRefType.ContainersRefTypeChildInterface" - } - ] - }, - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_ContainersRefTypeChildInterface.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L74", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ContainersRefTypeChildInterface", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inInterface": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json deleted file mode 100644 index 8df5effdd7a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json +++ /dev/null @@ -1,193 +0,0 @@ -{ - "uid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeDelegate" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeDelegate" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeDelegate" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeDelegate" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate" - } - ], - "type": "delegate", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ContainersRefTypeDelegate", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 43.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "summary": "

Delegate ContainersRefTypeDelegate

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public delegate void ContainersRefType.ContainersRefTypeDelegate()" - }, - { - "lang": "vb", - "value": "Public Delegate Sub ContainersRefType.ContainersRefTypeDelegate()" - } - ] - }, - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_ContainersRefTypeDelegate.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L44", - "description": "Delegate ContainersRefTypeDelegate", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ContainersRefTypeDelegate", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inDelegate": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.html.view.verified.json deleted file mode 100644 index 91457d15c12..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.html.view.verified.json +++ /dev/null @@ -1,1294 +0,0 @@ -{ - "uid": "CatLibrary.Core.ContainersRefType", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "children": [ - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "CatLibrary.Core.ContainersRefType.ColorCount", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Core.ContainersRefType", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ColorCount" - }, - { - "lang": "vb", - "value": "ColorCount" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorCount" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorCount" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ColorCount" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ColorCount" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public long ColorCount" - }, - { - "lang": "vb", - "value": "Public ColorCount As Long" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "System.Int64", - "name": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ColorCount", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 17.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": "CatLibrary.Core", - "example": [], - "level": 0.0, - "type": "field", - "summary": "

ColorCount

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_ColorCount.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.ColorCount%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L18", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ColorCount", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CatLibrary.Core.ContainersRefType.GetColorCount", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Core.ContainersRefType", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "GetColorCount" - }, - { - "lang": "vb", - "value": "GetColorCount" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.GetColorCount" - }, - { - "lang": "vb", - "value": "ContainersRefType.GetColorCount" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.GetColorCount" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.GetColorCount" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public long GetColorCount { get; }" - }, - { - "lang": "vb", - "value": "Public Property GetColorCount As Long" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.Int64", - "name": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "GetColorCount", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 49.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": "CatLibrary.Core", - "example": [], - "overload": { - "uid": "CatLibrary.Core.ContainersRefType.GetColorCount*", - "name": [ - { - "lang": "csharp", - "value": "GetColorCount" - }, - { - "lang": "vb", - "value": "GetColorCount" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.GetColorCount" - }, - { - "lang": "vb", - "value": "ContainersRefType.GetColorCount" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.GetColorCount" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.GetColorCount" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Core_ContainersRefType_GetColorCount_" - }, - "level": 0.0, - "type": "property", - "summary": "

GetColorCount

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_GetColorCount.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.GetColorCount%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L50", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_GetColorCount", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod(System.Object[])", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Core.ContainersRefType", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ContainersRefTypeNonRefMethod(params object[])" - }, - { - "lang": "vb", - "value": "ContainersRefTypeNonRefMethod(ParamArray Object())" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeNonRefMethod(params object[])" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeNonRefMethod(ParamArray Object())" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod(params object[])" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod(ParamArray Object())" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)" - }, - { - "lang": "vb", - "value": "Public Shared Function ContainersRefTypeNonRefMethod(ParamArray parmsArray As Object()) As Integer" - } - ], - "parameters": [ - { - "id": "parmsArray", - "type": { - "uid": "System.Object[]", - "name": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ] - } - } - ], - "return": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ContainersRefTypeNonRefMethod", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 67.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": "CatLibrary.Core", - "example": [], - "overload": { - "uid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod*", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefTypeNonRefMethod" - }, - { - "lang": "vb", - "value": "ContainersRefTypeNonRefMethod" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeNonRefMethod" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeNonRefMethod" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Core_ContainersRefType_ContainersRefTypeNonRefMethod_" - }, - "level": 0.0, - "type": "method", - "summary": "

ContainersRefTypeNonRefMethod

\narray\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_ContainersRefTypeNonRefMethod_System_Object___.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod(System.Object%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L68", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ContainersRefTypeNonRefMethod_System_Object___", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inEvent": true, - "typePropertyName": "inEvent", - "id": "events", - "children": [ - { - "uid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeEventHandler", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Core.ContainersRefType", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "ContainersRefTypeEventHandler" - }, - { - "lang": "vb", - "value": "ContainersRefTypeEventHandler" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeEventHandler" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeEventHandler" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeEventHandler" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeEventHandler" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public event EventHandler ContainersRefTypeEventHandler" - }, - { - "lang": "vb", - "value": "Public Event ContainersRefTypeEventHandler As EventHandler" - } - ], - "return": null, - "eventType": { - "type": { - "uid": "System.EventHandler", - "name": [ - { - "lang": "csharp", - "value": "EventHandler" - }, - { - "lang": "vb", - "value": "EventHandler" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "EventHandler" - }, - { - "lang": "vb", - "value": "EventHandler" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.EventHandler" - }, - { - "lang": "vb", - "value": "System.EventHandler" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ContainersRefTypeEventHandler", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 85.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": "CatLibrary.Core", - "level": 0.0, - "type": "event", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType_ContainersRefTypeEventHandler.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType.ContainersRefTypeEventHandler%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L86", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ContainersRefTypeEventHandler", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType" - }, - { - "lang": "vb", - "value": "ContainersRefType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType" - }, - { - "lang": "vb", - "value": "ContainersRefType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType" - } - ], - "type": "struct", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ContainersRefType", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 11.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "summary": "

Struct ContainersRefType

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public struct ContainersRefType" - }, - { - "lang": "vb", - "value": "Public Structure ContainersRefType" - } - ] - }, - "level": 0.0, - "inheritedMembers": [ - { - "uid": "System.ValueType.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "ValueType.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.Equals(object)" - }, - { - "lang": "vb", - "value": "System.ValueType.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "ValueType.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.GetHashCode()" - }, - { - "lang": "vb", - "value": "System.ValueType.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.ValueType.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.ValueType", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ValueType.ToString()" - }, - { - "lang": "vb", - "value": "ValueType.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ValueType.ToString()" - }, - { - "lang": "vb", - "value": "System.ValueType.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - } - ], - "extensionMethods": [ - { - "uid": "CatLibrary.Core.ContainersRefType.CatLibrary.Core.Issue231.Bar", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Core.Issue231", - "definition": "CatLibrary.Core.Issue231.Bar(CatLibrary.Core.ContainersRefType)", - "href": "CatLibrary.Core.Issue231.html#CatLibrary_Core_Issue231_Bar_CatLibrary_Core_ContainersRefType_", - "name": [ - { - "lang": "csharp", - "value": "Bar(ContainersRefType)" - }, - { - "lang": "vb", - "value": "Bar(ContainersRefType)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue231.Bar(ContainersRefType)" - }, - { - "lang": "vb", - "value": "Issue231.Bar(ContainersRefType)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.Issue231.Bar(CatLibrary.Core.ContainersRefType)" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.Issue231.Bar(CatLibrary.Core.ContainersRefType)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Bar(ContainersRefType)" - }, - { - "lang": "vb", - "value": "Bar(ContainersRefType)" - } - ], - "level": 0.0 - }, - { - "uid": "CatLibrary.Core.ContainersRefType.CatLibrary.Core.Issue231.Foo", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Core.Issue231", - "definition": "CatLibrary.Core.Issue231.Foo(CatLibrary.Core.ContainersRefType)", - "href": "CatLibrary.Core.Issue231.html#CatLibrary_Core_Issue231_Foo_CatLibrary_Core_ContainersRefType_", - "name": [ - { - "lang": "csharp", - "value": "Foo(ContainersRefType)" - }, - { - "lang": "vb", - "value": "Foo(ContainersRefType)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue231.Foo(ContainersRefType)" - }, - { - "lang": "vb", - "value": "Issue231.Foo(ContainersRefType)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.Issue231.Foo(CatLibrary.Core.ContainersRefType)" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.Issue231.Foo(CatLibrary.Core.ContainersRefType)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Foo(ContainersRefType)" - }, - { - "lang": "vb", - "value": "Foo(ContainersRefType)" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Core.ContainersRefType.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Core.ContainersRefType.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ContainersRefType.md&value=---%0Auid%3A%20CatLibrary.Core.ContainersRefType%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L12", - "description": "Struct ContainersRefType", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inStruct": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json deleted file mode 100644 index 05a073a143b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json +++ /dev/null @@ -1,590 +0,0 @@ -{ - "uid": "CatLibrary.Core.ExplicitLayoutClass", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ExplicitLayoutClass" - }, - { - "lang": "vb", - "value": "ExplicitLayoutClass" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ExplicitLayoutClass" - }, - { - "lang": "vb", - "value": "ExplicitLayoutClass" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ExplicitLayoutClass" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ExplicitLayoutClass" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ExplicitLayoutClass", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 93.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class ExplicitLayoutClass" - }, - { - "lang": "vb", - "value": "Public Class ExplicitLayoutClass" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Core.ExplicitLayoutClass.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Core.ExplicitLayoutClass.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_ExplicitLayoutClass.md&value=---%0Auid%3A%20CatLibrary.Core.ExplicitLayoutClass%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L94", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_ExplicitLayoutClass", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.Issue231.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.Issue231.html.view.verified.json deleted file mode 100644 index 3c9ed26d600..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.Issue231.html.view.verified.json +++ /dev/null @@ -1,960 +0,0 @@ -{ - "uid": "CatLibrary.Core.Issue231", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CatLibrary.Core.Issue231.Bar(CatLibrary.Core.ContainersRefType)", - "isEii": false, - "isExtensionMethod": true, - "parent": "CatLibrary.Core.Issue231", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Bar(ContainersRefType)" - }, - { - "lang": "vb", - "value": "Bar(ContainersRefType)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue231.Bar(ContainersRefType)" - }, - { - "lang": "vb", - "value": "Issue231.Bar(ContainersRefType)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.Issue231.Bar(CatLibrary.Core.ContainersRefType)" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.Issue231.Bar(CatLibrary.Core.ContainersRefType)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void Bar(this ContainersRefType c)" - }, - { - "lang": "vb", - "value": "Public Shared Sub Bar(c As ContainersRefType)" - } - ], - "parameters": [ - { - "id": "c", - "type": { - "uid": "CatLibrary.Core.ContainersRefType", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType" - }, - { - "lang": "vb", - "value": "ContainersRefType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType" - }, - { - "lang": "vb", - "value": "ContainersRefType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Bar", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 426.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary.Core", - "overload": { - "uid": "CatLibrary.Core.Issue231.Bar*", - "name": [ - { - "lang": "csharp", - "value": "Bar" - }, - { - "lang": "vb", - "value": "Bar" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue231.Bar" - }, - { - "lang": "vb", - "value": "Issue231.Bar" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.Issue231.Bar" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.Issue231.Bar" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Core_Issue231_Bar_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_Issue231_Bar_CatLibrary_Core_ContainersRefType_.md&value=---%0Auid%3A%20CatLibrary.Core.Issue231.Bar(CatLibrary.Core.ContainersRefType)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L427", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_Issue231_Bar_CatLibrary_Core_ContainersRefType_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Core.Issue231.Foo(CatLibrary.Core.ContainersRefType)", - "isEii": false, - "isExtensionMethod": true, - "parent": "CatLibrary.Core.Issue231", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Foo(ContainersRefType)" - }, - { - "lang": "vb", - "value": "Foo(ContainersRefType)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue231.Foo(ContainersRefType)" - }, - { - "lang": "vb", - "value": "Issue231.Foo(ContainersRefType)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.Issue231.Foo(CatLibrary.Core.ContainersRefType)" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.Issue231.Foo(CatLibrary.Core.ContainersRefType)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void Foo(this ContainersRefType c)" - }, - { - "lang": "vb", - "value": "Public Shared Sub Foo(c As ContainersRefType)" - } - ], - "parameters": [ - { - "id": "c", - "type": { - "uid": "CatLibrary.Core.ContainersRefType", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType" - }, - { - "lang": "vb", - "value": "ContainersRefType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType" - }, - { - "lang": "vb", - "value": "ContainersRefType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Foo", - "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", - "startLine": 104.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary.Core" - ], - "namespace": "CatLibrary.Core", - "overload": { - "uid": "CatLibrary.Core.Issue231.Foo*", - "name": [ - { - "lang": "csharp", - "value": "Foo" - }, - { - "lang": "vb", - "value": "Foo" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue231.Foo" - }, - { - "lang": "vb", - "value": "Issue231.Foo" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.Issue231.Foo" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.Issue231.Foo" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Core_Issue231_Foo_" - }, - "level": 0.0, - "type": "method", - "summary": "", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_Issue231_Foo_CatLibrary_Core_ContainersRefType_.md&value=---%0Auid%3A%20CatLibrary.Core.Issue231.Foo(CatLibrary.Core.ContainersRefType)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary.Core/BaseClass.cs/#L105", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_Issue231_Foo_CatLibrary_Core_ContainersRefType_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Issue231" - }, - { - "lang": "vb", - "value": "Issue231" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue231" - }, - { - "lang": "vb", - "value": "Issue231" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.Issue231" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.Issue231" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Issue231", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 424.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0 - }, - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static class Issue231" - }, - { - "lang": "vb", - "value": "Public Module Issue231" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Core.Issue231.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Core.Issue231.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Core_Issue231.md&value=---%0Auid%3A%20CatLibrary.Core.Issue231%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L425", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_Issue231", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.html.view.verified.json deleted file mode 100644 index 1e64af35e25..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.html.view.verified.json +++ /dev/null @@ -1,564 +0,0 @@ -{ - "uid": "CatLibrary.Core", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "isEii": false, - "isExtensionMethod": false, - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild", - "isExtensionMethod": false, - "href": "CatLibrary.Core.ContainersRefType.html", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeChild" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeChild" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeChild" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeChild" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeChild" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeChild" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ContainersRefTypeChild", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Core.ExplicitLayoutClass", - "isExtensionMethod": false, - "href": "CatLibrary.Core.ExplicitLayoutClass.html", - "name": [ - { - "lang": "csharp", - "value": "ExplicitLayoutClass" - }, - { - "lang": "vb", - "value": "ExplicitLayoutClass" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ExplicitLayoutClass" - }, - { - "lang": "vb", - "value": "ExplicitLayoutClass" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ExplicitLayoutClass" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ExplicitLayoutClass" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_ExplicitLayoutClass", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Core.Issue231", - "isExtensionMethod": false, - "parent": "CatLibrary.Core", - "href": "CatLibrary.Core.Issue231.html", - "name": [ - { - "lang": "csharp", - "value": "Issue231" - }, - { - "lang": "vb", - "value": "Issue231" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Issue231" - }, - { - "lang": "vb", - "value": "Issue231" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.Issue231" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.Issue231" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_Issue231", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inStruct": true, - "typePropertyName": "inStruct", - "id": "structs", - "children": [ - { - "uid": "CatLibrary.Core.ContainersRefType", - "isExtensionMethod": false, - "parent": "CatLibrary.Core", - "href": "CatLibrary.Core.ContainersRefType.html", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType" - }, - { - "lang": "vb", - "value": "ContainersRefType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType" - }, - { - "lang": "vb", - "value": "ContainersRefType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

Struct ContainersRefType

\n", - "type": "struct", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inInterface": true, - "typePropertyName": "inInterface", - "id": "interfaces", - "children": [ - { - "uid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface", - "isExtensionMethod": false, - "href": "CatLibrary.Core.ContainersRefType.html", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeChildInterface" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeChildInterface" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeChildInterface" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeChildInterface" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeChildInterface" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeChildInterface" - } - ], - "level": 0.0, - "summary": "", - "type": "interface", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ContainersRefTypeChildInterface", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inEnum": true, - "typePropertyName": "inEnum", - "id": "enums", - "children": [ - { - "uid": "CatLibrary.Core.ContainersRefType.ColorType", - "isExtensionMethod": false, - "parent": "CatLibrary.Core", - "href": "CatLibrary.Core.ContainersRefType.html", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "level": 0.0, - "summary": "

Enumeration ColorType

\n", - "type": "enum", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ColorType", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inDelegate": true, - "typePropertyName": "inDelegate", - "id": "delegates", - "children": [ - { - "uid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate", - "isExtensionMethod": false, - "href": "CatLibrary.Core.ContainersRefType.html", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeDelegate" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeDelegate" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeDelegate" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeDelegate" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ContainersRefType.ContainersRefTypeDelegate" - }, - { - "lang": "vb", - "value": "ContainersRefType.ContainersRefTypeDelegate" - } - ], - "level": 0.0, - "summary": "

Delegate ContainersRefTypeDelegate

\n", - "type": "delegate", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core_ContainersRefType_ContainersRefTypeDelegate", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "type": "namespace", - "assemblies": [ - "CatLibrary" - ], - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Core.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Core.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.FakeDelegate-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.FakeDelegate-1.html.view.verified.json deleted file mode 100644 index 68176419022..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.FakeDelegate-1.html.view.verified.json +++ /dev/null @@ -1,388 +0,0 @@ -{ - "uid": "CatLibrary.FakeDelegate`1", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "FakeDelegate" - }, - { - "lang": "vb", - "value": "FakeDelegate(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "FakeDelegate" - }, - { - "lang": "vb", - "value": "FakeDelegate(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.FakeDelegate" - }, - { - "lang": "vb", - "value": "CatLibrary.FakeDelegate(Of T)" - } - ], - "type": "delegate", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "FakeDelegate", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 379.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

Fake delegate

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public delegate int FakeDelegate(long num, string name, params object[] scores)" - }, - { - "lang": "vb", - "value": "Public Delegate Function FakeDelegate(Of T)(num As Long, name As String, ParamArray scores As Object()) As Integer" - } - ], - "parameters": [ - { - "id": "num", - "type": { - "uid": "System.Int64", - "name": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Fake para

\n" - }, - { - "id": "name", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Fake para

\n" - }, - { - "id": "scores", - "type": { - "uid": "System.Object[]", - "name": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "object[]" - }, - { - "lang": "vb", - "value": "Object()" - } - ] - }, - "description": "

Optional Parameter.

\n" - } - ], - "typeParameters": [ - { - "id": "T", - "description": "

Fake para

\n" - } - ], - "return": { - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Return a fake number to confuse you.

\n" - } - }, - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.FakeDelegate-1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.FakeDelegate-1.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_FakeDelegate_1.md&value=---%0Auid%3A%20CatLibrary.FakeDelegate%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L380", - "description": "Fake delegate", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_FakeDelegate_1", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inDelegate": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.IAnimal.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.IAnimal.html.view.verified.json deleted file mode 100644 index 54e831e18de..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.IAnimal.html.view.verified.json +++ /dev/null @@ -1,1131 +0,0 @@ -{ - "uid": "CatLibrary.IAnimal", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inProperty": true, - "typePropertyName": "inProperty", - "id": "properties", - "children": [ - { - "uid": "CatLibrary.IAnimal.Item(System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.IAnimal", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "this[int]" - }, - { - "lang": "vb", - "value": "this[](Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.this[int]" - }, - { - "lang": "vb", - "value": "IAnimal.this[](Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.this[int]" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.this[](Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "string this[int index] { get; }" - }, - { - "lang": "vb", - "value": "ReadOnly Default Property this[](index As Integer) As String" - } - ], - "parameters": [ - { - "id": "index", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Animal number.

\n" - } - ], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Animal name.

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "this[]", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 30.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.IAnimal.Item*", - "name": [ - { - "lang": "csharp", - "value": "this" - }, - { - "lang": "vb", - "value": "this[]" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.this" - }, - { - "lang": "vb", - "value": "IAnimal.this[]" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.this" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.this[]" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_IAnimal_Item_" - }, - "level": 0.0, - "type": "property", - "summary": "

Return specific number animal's name.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_IAnimal_Item_System_Int32_.md&value=---%0Auid%3A%20CatLibrary.IAnimal.Item(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L31", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_IAnimal_Item_System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.IAnimal.Name", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.IAnimal", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Name" - }, - { - "lang": "vb", - "value": "Name" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Name" - }, - { - "lang": "vb", - "value": "IAnimal.Name" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Name" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Name" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "string Name { get; }" - }, - { - "lang": "vb", - "value": "ReadOnly Property Name As String" - } - ], - "parameters": [], - "return": null, - "propertyValue": { - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Name", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 23.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.IAnimal.Name*", - "name": [ - { - "lang": "csharp", - "value": "Name" - }, - { - "lang": "vb", - "value": "Name" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Name" - }, - { - "lang": "vb", - "value": "IAnimal.Name" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Name" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Name" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_IAnimal_Name_" - }, - "level": 0.0, - "type": "property", - "summary": "

Name of Animal.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_IAnimal_Name.md&value=---%0Auid%3A%20CatLibrary.IAnimal.Name%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L24", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_IAnimal_Name", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CatLibrary.IAnimal.Eat", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.IAnimal", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Eat()" - }, - { - "lang": "vb", - "value": "Eat()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Eat()" - }, - { - "lang": "vb", - "value": "IAnimal.Eat()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Eat()" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Eat()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "void Eat()" - }, - { - "lang": "vb", - "value": "Sub Eat()" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Eat", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 35.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.IAnimal.Eat*", - "name": [ - { - "lang": "csharp", - "value": "Eat" - }, - { - "lang": "vb", - "value": "Eat" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Eat" - }, - { - "lang": "vb", - "value": "IAnimal.Eat" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Eat" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Eat" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_IAnimal_Eat_" - }, - "level": 0.0, - "type": "method", - "summary": "

Animal's eat method.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_IAnimal_Eat.md&value=---%0Auid%3A%20CatLibrary.IAnimal.Eat%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L36", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_IAnimal_Eat", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.IAnimal.Eat(System.String)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.IAnimal", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Eat(string)" - }, - { - "lang": "vb", - "value": "Eat(String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Eat(string)" - }, - { - "lang": "vb", - "value": "IAnimal.Eat(String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Eat(string)" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Eat(String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "void Eat(string food)" - }, - { - "lang": "vb", - "value": "Sub Eat(food As String)" - } - ], - "parameters": [ - { - "id": "food", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Food to eat

\n" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Eat", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 49.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.IAnimal.Eat*", - "name": [ - { - "lang": "csharp", - "value": "Eat" - }, - { - "lang": "vb", - "value": "Eat" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Eat" - }, - { - "lang": "vb", - "value": "IAnimal.Eat" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Eat" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Eat" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_IAnimal_Eat_" - }, - "level": 0.0, - "type": "method", - "summary": "

Feed the animal with some food

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_IAnimal_Eat_System_String_.md&value=---%0Auid%3A%20CatLibrary.IAnimal.Eat(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L50", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_IAnimal_Eat_System_String_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.IAnimal.Eat``1(``0)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.IAnimal", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Eat(Tool)" - }, - { - "lang": "vb", - "value": "Eat(Of Tool)(Tool)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Eat(Tool)" - }, - { - "lang": "vb", - "value": "IAnimal.Eat(Of Tool)(Tool)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Eat(Tool)" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Eat(Of Tool)(Tool)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "void Eat(Tool tool) where Tool : class" - }, - { - "lang": "vb", - "value": "Sub Eat(Of Tool As Class)(tool As Tool)" - } - ], - "parameters": [ - { - "id": "tool", - "type": { - "uid": "{Tool}", - "definition": "Tool", - "name": [ - { - "lang": "csharp", - "value": "Tool" - }, - { - "lang": "vb", - "value": "Tool" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Tool" - }, - { - "lang": "vb", - "value": "Tool" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "Tool" - }, - { - "lang": "vb", - "value": "Tool" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Tool name.

\n" - } - ], - "typeParameters": [ - { - "id": "Tool", - "description": "

It's a class type.

\n" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Eat", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 42.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.IAnimal.Eat*", - "name": [ - { - "lang": "csharp", - "value": "Eat" - }, - { - "lang": "vb", - "value": "Eat" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Eat" - }, - { - "lang": "vb", - "value": "IAnimal.Eat" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Eat" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Eat" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_IAnimal_Eat_" - }, - "level": 0.0, - "type": "method", - "summary": "

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

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_IAnimal_Eat__1___0_.md&value=---%0Auid%3A%20CatLibrary.IAnimal.Eat%60%601(%60%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L43", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_IAnimal_Eat__1___0_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "IAnimal" - }, - { - "lang": "vb", - "value": "IAnimal" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal" - }, - { - "lang": "vb", - "value": "IAnimal" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal" - } - ], - "type": "interface", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "IAnimal", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 17.0, - "endLine": 0.0 - }, - "documentation": { - "remote": { - "path": "samples/seed/specs/CatLibrary.IAnimal.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "path": "specs/CatLibrary.IAnimal.md", - "startLine": 1.0, - "endLine": 4.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

This is basic interface of all animal.

\n", - "remarks": "

THIS is remarks overridden in MARKDWON file

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public interface IAnimal" - }, - { - "lang": "vb", - "value": "Public Interface IAnimal" - } - ] - }, - "level": 0.0, - "conceptual": "

Welcome to the Animal world!

\n", - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.IAnimal.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.IAnimal.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/specs/CatLibrary.IAnimal.md/#L2", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L18", - "description": "This is basic interface of all animal.", - "implements": "", - "seealso": [], - "id": "CatLibrary_IAnimal", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inInterface": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICat.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICat.html.view.verified.json deleted file mode 100644 index a58e987e2b1..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICat.html.view.verified.json +++ /dev/null @@ -1,693 +0,0 @@ -{ - "uid": "CatLibrary.ICat", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inEvent": true, - "typePropertyName": "inEvent", - "id": "events", - "children": [ - { - "uid": "CatLibrary.ICat.eat", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.ICat", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "eat" - }, - { - "lang": "vb", - "value": "eat" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICat.eat" - }, - { - "lang": "vb", - "value": "ICat.eat" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICat.eat" - }, - { - "lang": "vb", - "value": "CatLibrary.ICat.eat" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "event EventHandler eat" - }, - { - "lang": "vb", - "value": "Event eat As EventHandler" - } - ], - "return": null, - "eventType": { - "type": { - "uid": "System.EventHandler", - "name": [ - { - "lang": "csharp", - "value": "EventHandler" - }, - { - "lang": "vb", - "value": "EventHandler" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "EventHandler" - }, - { - "lang": "vb", - "value": "EventHandler" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.EventHandler" - }, - { - "lang": "vb", - "value": "System.EventHandler" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "eat", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 61.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "level": 0.0, - "type": "event", - "summary": "

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

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_ICat_eat.md&value=---%0Auid%3A%20CatLibrary.ICat.eat%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L62", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_ICat_eat", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ICat" - }, - { - "lang": "vb", - "value": "ICat" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICat" - }, - { - "lang": "vb", - "value": "ICat" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICat" - }, - { - "lang": "vb", - "value": "CatLibrary.ICat" - } - ], - "type": "interface", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ICat", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 55.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

Cat's interface

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public interface ICat : IAnimal" - }, - { - "lang": "vb", - "value": "Public Interface ICat Inherits IAnimal" - } - ] - }, - "level": 0.0, - "inheritedMembers": [ - { - "uid": "CatLibrary.IAnimal.Name", - "isExtensionMethod": false, - "parent": "CatLibrary.IAnimal", - "href": "CatLibrary.IAnimal.html#CatLibrary_IAnimal_Name", - "name": [ - { - "lang": "csharp", - "value": "Name" - }, - { - "lang": "vb", - "value": "Name" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Name" - }, - { - "lang": "vb", - "value": "IAnimal.Name" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Name" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Name" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

Name of Animal.

\n", - "type": "property", - "platform": null, - "isEii": false - }, - { - "uid": "CatLibrary.IAnimal.Item(System.Int32)", - "isExtensionMethod": false, - "parent": "CatLibrary.IAnimal", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.int32", - "name": [ - { - "lang": "csharp", - "value": "this[int]" - }, - { - "lang": "vb", - "value": "this[](Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.this[int]" - }, - { - "lang": "vb", - "value": "IAnimal.this[](Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.this[int]" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.this[](Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "this[int]" - }, - { - "lang": "vb", - "value": "this[](Integer)" - } - ], - "level": 0.0, - "summary": "

Return specific number animal's name.

\n", - "type": "property", - "platform": null, - "isEii": false - }, - { - "uid": "CatLibrary.IAnimal.Eat", - "isExtensionMethod": false, - "parent": "CatLibrary.IAnimal", - "href": "CatLibrary.IAnimal.html#CatLibrary_IAnimal_Eat", - "name": [ - { - "lang": "csharp", - "value": "Eat()" - }, - { - "lang": "vb", - "value": "Eat()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Eat()" - }, - { - "lang": "vb", - "value": "IAnimal.Eat()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Eat()" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Eat()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Eat()" - }, - { - "lang": "vb", - "value": "Eat()" - } - ], - "level": 0.0, - "summary": "

Animal's eat method.

\n", - "type": "method", - "platform": null, - "isEii": false - }, - { - "uid": "CatLibrary.IAnimal.Eat``1({Tool})", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.IAnimal", - "definition": "CatLibrary.IAnimal.Eat``1(``0)", - "href": "CatLibrary.IAnimal.html#CatLibrary_IAnimal_Eat__1___0_", - "name": [ - { - "lang": "csharp", - "value": "Eat(Tool)" - }, - { - "lang": "vb", - "value": "Eat(Of Tool)(Tool)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Eat(Tool)" - }, - { - "lang": "vb", - "value": "IAnimal.Eat(Of Tool)(Tool)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Eat(Tool)" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Eat(Of Tool)(Tool)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Eat<Tool>(Tool)" - }, - { - "lang": "vb", - "value": "Eat(Of Tool)(Tool)" - } - ], - "level": 0.0 - }, - { - "uid": "CatLibrary.IAnimal.Eat(System.String)", - "isExtensionMethod": false, - "parent": "CatLibrary.IAnimal", - "isExternal": true, - "href": "CatLibrary.IAnimal.html#CatLibrary_IAnimal_Eat_System_String_", - "name": [ - { - "lang": "csharp", - "value": "Eat(string)" - }, - { - "lang": "vb", - "value": "Eat(String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal.Eat(string)" - }, - { - "lang": "vb", - "value": "IAnimal.Eat(String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal.Eat(string)" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal.Eat(String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Eat(string)" - }, - { - "lang": "vb", - "value": "Eat(String)" - } - ], - "level": 0.0, - "summary": "

Feed the animal with some food

\n", - "type": "method", - "platform": null, - "isEii": false - } - ], - "extensionMethods": [ - { - "uid": "CatLibrary.ICat.CatLibrary.ICatExtension.Play(CatLibrary.Core.ContainersRefType.ColorType)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.ICatExtension", - "definition": "CatLibrary.ICatExtension.Play(CatLibrary.ICat,CatLibrary.Core.ContainersRefType.ColorType)", - "href": "CatLibrary.ICatExtension.html#CatLibrary_ICatExtension_Play_CatLibrary_ICat_CatLibrary_Core_ContainersRefType_ColorType_", - "name": [ - { - "lang": "csharp", - "value": "Play(ICat, ColorType)" - }, - { - "lang": "vb", - "value": "Play(ICat, ColorType)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICatExtension.Play(ICat, ContainersRefType.ColorType)" - }, - { - "lang": "vb", - "value": "ICatExtension.Play(ICat, ContainersRefType.ColorType)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICatExtension.Play(CatLibrary.ICat, CatLibrary.Core.ContainersRefType.ColorType)" - }, - { - "lang": "vb", - "value": "CatLibrary.ICatExtension.Play(CatLibrary.ICat, CatLibrary.Core.ContainersRefType.ColorType)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Play(ICat, ColorType)" - }, - { - "lang": "vb", - "value": "Play(ICat, ColorType)" - } - ], - "level": 0.0 - }, - { - "uid": "CatLibrary.ICat.CatLibrary.ICatExtension.Sleep(System.Int64)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.ICatExtension", - "definition": "CatLibrary.ICatExtension.Sleep(CatLibrary.ICat,System.Int64)", - "href": "CatLibrary.ICatExtension.html#CatLibrary_ICatExtension_Sleep_CatLibrary_ICat_System_Int64_", - "name": [ - { - "lang": "csharp", - "value": "Sleep(ICat, long)" - }, - { - "lang": "vb", - "value": "Sleep(ICat, Long)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICatExtension.Sleep(ICat, long)" - }, - { - "lang": "vb", - "value": "ICatExtension.Sleep(ICat, Long)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICatExtension.Sleep(CatLibrary.ICat, long)" - }, - { - "lang": "vb", - "value": "CatLibrary.ICatExtension.Sleep(CatLibrary.ICat, Long)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Sleep(ICat, long)" - }, - { - "lang": "vb", - "value": "Sleep(ICat, Long)" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.ICat.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.ICat.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_ICat.md&value=---%0Auid%3A%20CatLibrary.ICat%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L56", - "description": "Cat's interface", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_ICat", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inInterface": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICatExtension.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICatExtension.html.view.verified.json deleted file mode 100644 index 626f9b67e07..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICatExtension.html.view.verified.json +++ /dev/null @@ -1,1056 +0,0 @@ -{ - "uid": "CatLibrary.ICatExtension", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CatLibrary.ICatExtension.Play(CatLibrary.ICat,CatLibrary.Core.ContainersRefType.ColorType)", - "isEii": false, - "isExtensionMethod": true, - "parent": "CatLibrary.ICatExtension", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Play(ICat, ColorType)" - }, - { - "lang": "vb", - "value": "Play(ICat, ColorType)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICatExtension.Play(ICat, ContainersRefType.ColorType)" - }, - { - "lang": "vb", - "value": "ICatExtension.Play(ICat, ContainersRefType.ColorType)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICatExtension.Play(CatLibrary.ICat, CatLibrary.Core.ContainersRefType.ColorType)" - }, - { - "lang": "vb", - "value": "CatLibrary.ICatExtension.Play(CatLibrary.ICat, CatLibrary.Core.ContainersRefType.ColorType)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void Play(this ICat icat, ContainersRefType.ColorType toy)" - }, - { - "lang": "vb", - "value": "Public Shared Sub Play(icat As ICat, toy As ContainersRefType.ColorType)" - } - ], - "parameters": [ - { - "id": "icat", - "type": { - "uid": "CatLibrary.ICat", - "name": [ - { - "lang": "csharp", - "value": "ICat" - }, - { - "lang": "vb", - "value": "ICat" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICat" - }, - { - "lang": "vb", - "value": "ICat" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICat" - }, - { - "lang": "vb", - "value": "CatLibrary.ICat" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Cat

\n" - }, - { - "id": "toy", - "type": { - "uid": "CatLibrary.Core.ContainersRefType.ColorType", - "name": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "CatLibrary.Core.ContainersRefType.ColorType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ContainersRefType.ColorType" - }, - { - "lang": "vb", - "value": "ContainersRefType.ColorType" - } - ] - }, - "description": "

Something to play

\n" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Play", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 346.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.ICatExtension.Play*", - "name": [ - { - "lang": "csharp", - "value": "Play" - }, - { - "lang": "vb", - "value": "Play" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICatExtension.Play" - }, - { - "lang": "vb", - "value": "ICatExtension.Play" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICatExtension.Play" - }, - { - "lang": "vb", - "value": "CatLibrary.ICatExtension.Play" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_ICatExtension_Play_" - }, - "level": 0.0, - "type": "method", - "summary": "

Extension method to let cat play

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_ICatExtension_Play_CatLibrary_ICat_CatLibrary_Core_ContainersRefType_ColorType_.md&value=---%0Auid%3A%20CatLibrary.ICatExtension.Play(CatLibrary.ICat%2CCatLibrary.Core.ContainersRefType.ColorType)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L347", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_ICatExtension_Play_CatLibrary_ICat_CatLibrary_Core_ContainersRefType_ColorType_", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.ICatExtension.Sleep(CatLibrary.ICat,System.Int64)", - "isEii": false, - "isExtensionMethod": true, - "parent": "CatLibrary.ICatExtension", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Sleep(ICat, long)" - }, - { - "lang": "vb", - "value": "Sleep(ICat, Long)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICatExtension.Sleep(ICat, long)" - }, - { - "lang": "vb", - "value": "ICatExtension.Sleep(ICat, Long)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICatExtension.Sleep(CatLibrary.ICat, long)" - }, - { - "lang": "vb", - "value": "CatLibrary.ICatExtension.Sleep(CatLibrary.ICat, Long)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static void Sleep(this ICat icat, long hours)" - }, - { - "lang": "vb", - "value": "Public Shared Sub Sleep(icat As ICat, hours As Long)" - } - ], - "parameters": [ - { - "id": "icat", - "type": { - "uid": "CatLibrary.ICat", - "name": [ - { - "lang": "csharp", - "value": "ICat" - }, - { - "lang": "vb", - "value": "ICat" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICat" - }, - { - "lang": "vb", - "value": "ICat" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICat" - }, - { - "lang": "vb", - "value": "CatLibrary.ICat" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

The type will be extended.

\n" - }, - { - "id": "hours", - "type": { - "uid": "System.Int64", - "name": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "long" - }, - { - "lang": "vb", - "value": "Long" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

The length of sleep.

\n" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Sleep", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 339.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.ICatExtension.Sleep*", - "name": [ - { - "lang": "csharp", - "value": "Sleep" - }, - { - "lang": "vb", - "value": "Sleep" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICatExtension.Sleep" - }, - { - "lang": "vb", - "value": "ICatExtension.Sleep" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICatExtension.Sleep" - }, - { - "lang": "vb", - "value": "CatLibrary.ICatExtension.Sleep" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_ICatExtension_Sleep_" - }, - "level": 0.0, - "type": "method", - "summary": "

Extension method hint that how long the cat can sleep.

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_ICatExtension_Sleep_CatLibrary_ICat_System_Int64_.md&value=---%0Auid%3A%20CatLibrary.ICatExtension.Sleep(CatLibrary.ICat%2CSystem.Int64)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L340", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_ICatExtension_Sleep_CatLibrary_ICat_System_Int64_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ICatExtension" - }, - { - "lang": "vb", - "value": "ICatExtension" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICatExtension" - }, - { - "lang": "vb", - "value": "ICatExtension" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICatExtension" - }, - { - "lang": "vb", - "value": "CatLibrary.ICatExtension" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ICatExtension", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 332.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

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

\n

This class must be public and static.

Also it shouldn't be a geneic class

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public static class ICatExtension" - }, - { - "lang": "vb", - "value": "Public Module ICatExtension" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.ICatExtension.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.ICatExtension.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_ICatExtension.md&value=---%0Auid%3A%20CatLibrary.ICatExtension%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L333", - "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", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_ICatExtension", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefDelegate-3.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefDelegate-3.html.view.verified.json deleted file mode 100644 index 520d9fa8bd9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefDelegate-3.html.view.verified.json +++ /dev/null @@ -1,353 +0,0 @@ -{ - "uid": "CatLibrary.MRefDelegate`3", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "MRefDelegate" - }, - { - "lang": "vb", - "value": "MRefDelegate(Of K, T, L)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "MRefDelegate" - }, - { - "lang": "vb", - "value": "MRefDelegate(Of K, T, L)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.MRefDelegate" - }, - { - "lang": "vb", - "value": "CatLibrary.MRefDelegate(Of K, T, L)" - } - ], - "type": "delegate", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "MRefDelegate", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 366.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

Generic delegate with many constrains.

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable" - }, - { - "lang": "vb", - "value": "Public Delegate Sub MRefDelegate(Of K As {Class, IComparable}, T As Structure, L As {Tom, IEnumerable(Of Long)})(k As K, t As T, l As L)" - } - ], - "parameters": [ - { - "id": "k", - "type": { - "uid": "{K}", - "definition": "K", - "name": [ - { - "lang": "csharp", - "value": "K" - }, - { - "lang": "vb", - "value": "K" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "K" - }, - { - "lang": "vb", - "value": "K" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "K" - }, - { - "lang": "vb", - "value": "K" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Type K.

\n" - }, - { - "id": "t", - "type": { - "uid": "{T}", - "definition": "T", - "name": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "T" - }, - { - "lang": "vb", - "value": "T" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Type T.

\n" - }, - { - "id": "l", - "type": { - "uid": "{L}", - "definition": "L", - "name": [ - { - "lang": "csharp", - "value": "L" - }, - { - "lang": "vb", - "value": "L" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "L" - }, - { - "lang": "vb", - "value": "L" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "L" - }, - { - "lang": "vb", - "value": "L" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

Type L.

\n" - } - ], - "typeParameters": [ - { - "id": "K", - "description": "

Generic K.

\n" - }, - { - "id": "T", - "description": "

Generic T.

\n" - }, - { - "id": "L", - "description": "

Generic L.

\n" - } - ] - }, - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.MRefDelegate-3.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.MRefDelegate-3.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_MRefDelegate_3.md&value=---%0Auid%3A%20CatLibrary.MRefDelegate%603%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L367", - "description": "Generic delegate with many constrains.", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_MRefDelegate_3", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inDelegate": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefNormalDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefNormalDelegate.html.view.verified.json deleted file mode 100644 index 2d30bb5caaa..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefNormalDelegate.html.view.verified.json +++ /dev/null @@ -1,290 +0,0 @@ -{ - "uid": "CatLibrary.MRefNormalDelegate", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "MRefNormalDelegate" - }, - { - "lang": "vb", - "value": "MRefNormalDelegate" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "MRefNormalDelegate" - }, - { - "lang": "vb", - "value": "MRefNormalDelegate" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.MRefNormalDelegate" - }, - { - "lang": "vb", - "value": "CatLibrary.MRefNormalDelegate" - } - ], - "type": "delegate", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "MRefNormalDelegate", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 355.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

Delegate in the namespace

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public delegate void MRefNormalDelegate(List pics, out string name)" - }, - { - "lang": "vb", - "value": "Public Delegate Sub MRefNormalDelegate(pics As List(Of String), name As String)" - } - ], - "parameters": [ - { - "id": "pics", - "type": { - "uid": "System.Collections.Generic.List{System.String}", - "definition": "System.Collections.Generic.List`1", - "name": [ - { - "lang": "csharp", - "value": "List" - }, - { - "lang": "vb", - "value": "List(Of String)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "List" - }, - { - "lang": "vb", - "value": "List(Of String)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Collections.Generic.List" - }, - { - "lang": "vb", - "value": "System.Collections.Generic.List(Of String)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "List<string>" - }, - { - "lang": "vb", - "value": "List(Of String)" - } - ] - }, - "description": "

a name list of pictures.

\n" - }, - { - "id": "name", - "type": { - "uid": "System.String", - "name": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "string" - }, - { - "lang": "vb", - "value": "String" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

give out the needed name.

\n" - } - ] - }, - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.MRefNormalDelegate.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.MRefNormalDelegate.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_MRefNormalDelegate.md&value=---%0Auid%3A%20CatLibrary.MRefNormalDelegate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L356", - "description": "Delegate in the namespace", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_MRefNormalDelegate", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inDelegate": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Tom.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Tom.html.view.verified.json deleted file mode 100644 index 590b3a0662f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Tom.html.view.verified.json +++ /dev/null @@ -1,1034 +0,0 @@ -{ - "uid": "CatLibrary.Tom", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inMethod": true, - "typePropertyName": "inMethod", - "id": "methods", - "children": [ - { - "uid": "CatLibrary.Tom.TomMethod(CatLibrary.Complex{CatLibrary.TomFromBaseClass,CatLibrary.TomFromBaseClass},System.Tuple{System.String,CatLibrary.Tom})", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.Tom", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "TomMethod(Complex, Tuple)" - }, - { - "lang": "vb", - "value": "TomMethod(Complex(Of TomFromBaseClass, TomFromBaseClass), Tuple(Of String, Tom))" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Tom.TomMethod(Complex, Tuple)" - }, - { - "lang": "vb", - "value": "Tom.TomMethod(Complex(Of TomFromBaseClass, TomFromBaseClass), Tuple(Of String, Tom))" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Tom.TomMethod(CatLibrary.Complex, System.Tuple)" - }, - { - "lang": "vb", - "value": "CatLibrary.Tom.TomMethod(CatLibrary.Complex(Of CatLibrary.TomFromBaseClass, CatLibrary.TomFromBaseClass), System.Tuple(Of String, CatLibrary.Tom))" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public Complex TomMethod(Complex a, Tuple b)" - }, - { - "lang": "vb", - "value": "Public Function TomMethod(a As Complex(Of TomFromBaseClass, TomFromBaseClass), b As Tuple(Of String, Tom)) As Complex(Of String, TomFromBaseClass)" - } - ], - "parameters": [ - { - "id": "a", - "type": { - "uid": "CatLibrary.Complex{CatLibrary.TomFromBaseClass,CatLibrary.TomFromBaseClass}", - "definition": "CatLibrary.Complex`2", - "name": [ - { - "lang": "csharp", - "value": "Complex" - }, - { - "lang": "vb", - "value": "Complex(Of TomFromBaseClass, TomFromBaseClass)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Complex" - }, - { - "lang": "vb", - "value": "Complex(Of TomFromBaseClass, TomFromBaseClass)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Complex" - }, - { - "lang": "vb", - "value": "CatLibrary.Complex(Of CatLibrary.TomFromBaseClass, CatLibrary.TomFromBaseClass)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Complex<TomFromBaseClass, TomFromBaseClass>" - }, - { - "lang": "vb", - "value": "Complex(Of TomFromBaseClass, TomFromBaseClass)" - } - ] - }, - "description": "

A complex input

\n" - }, - { - "id": "b", - "type": { - "uid": "System.Tuple{System.String,CatLibrary.Tom}", - "definition": "System.Tuple`2", - "name": [ - { - "lang": "csharp", - "value": "Tuple" - }, - { - "lang": "vb", - "value": "Tuple(Of String, Tom)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Tuple" - }, - { - "lang": "vb", - "value": "Tuple(Of String, Tom)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.Tuple" - }, - { - "lang": "vb", - "value": "System.Tuple(Of String, CatLibrary.Tom)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Tuple<string, Tom>" - }, - { - "lang": "vb", - "value": "Tuple(Of String, Tom)" - } - ] - }, - "description": "

Another complex input

\n" - } - ], - "return": { - "type": { - "uid": "CatLibrary.Complex{System.String,CatLibrary.TomFromBaseClass}", - "definition": "CatLibrary.Complex`2", - "name": [ - { - "lang": "csharp", - "value": "Complex" - }, - { - "lang": "vb", - "value": "Complex(Of String, TomFromBaseClass)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Complex" - }, - { - "lang": "vb", - "value": "Complex(Of String, TomFromBaseClass)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Complex" - }, - { - "lang": "vb", - "value": "CatLibrary.Complex(Of String, CatLibrary.TomFromBaseClass)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Complex<string, TomFromBaseClass>" - }, - { - "lang": "vb", - "value": "Complex(Of String, TomFromBaseClass)" - } - ] - }, - "description": "

Complex

\n" - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "TomMethod", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 299.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.Tom.TomMethod*", - "name": [ - { - "lang": "csharp", - "value": "TomMethod" - }, - { - "lang": "vb", - "value": "TomMethod" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Tom.TomMethod" - }, - { - "lang": "vb", - "value": "Tom.TomMethod" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Tom.TomMethod" - }, - { - "lang": "vb", - "value": "CatLibrary.Tom.TomMethod" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_Tom_TomMethod_" - }, - "exceptions": [ - { - "type": { - "uid": "System.NotImplementedException", - "name": [ - { - "lang": "csharp", - "value": "NotImplementedException" - }, - { - "lang": "vb", - "value": "NotImplementedException" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "NotImplementedException" - }, - { - "lang": "vb", - "value": "NotImplementedException" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.NotImplementedException" - }, - { - "lang": "vb", - "value": "System.NotImplementedException" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This is not implemented

\n" - }, - { - "type": { - "uid": "System.ArgumentException", - "name": [ - { - "lang": "csharp", - "value": "ArgumentException" - }, - { - "lang": "vb", - "value": "ArgumentException" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ArgumentException" - }, - { - "lang": "vb", - "value": "ArgumentException" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "System.ArgumentException" - }, - { - "lang": "vb", - "value": "System.ArgumentException" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "

This is the exception to be thrown when implemented

\n" - }, - { - "type": { - "uid": "CatLibrary.CatException`1", - "name": [ - { - "lang": "csharp", - "value": "CatException" - }, - { - "lang": "vb", - "value": "CatException(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatException" - }, - { - "lang": "vb", - "value": "CatException(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.CatException" - }, - { - "lang": "vb", - "value": "CatLibrary.CatException(Of T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatException<T>" - }, - { - "lang": "vb", - "value": "CatException(Of T)" - } - ] - }, - "description": "

This is the exception in current documentation

\n" - } - ], - "level": 0.0, - "type": "method", - "summary": "

This is a Tom Method with complex type as return

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Tom_TomMethod_CatLibrary_Complex_CatLibrary_TomFromBaseClass_CatLibrary_TomFromBaseClass__System_Tuple_System_String_CatLibrary_Tom__.md&value=---%0Auid%3A%20CatLibrary.Tom.TomMethod(CatLibrary.Complex%7BCatLibrary.TomFromBaseClass%2CCatLibrary.TomFromBaseClass%7D%2CSystem.Tuple%7BSystem.String%2CCatLibrary.Tom%7D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L300", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Tom_TomMethod_CatLibrary_Complex_CatLibrary_TomFromBaseClass_CatLibrary_TomFromBaseClass__System_Tuple_System_String_CatLibrary_Tom__", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "Tom" - }, - { - "lang": "vb", - "value": "Tom" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Tom" - }, - { - "lang": "vb", - "value": "Tom" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Tom" - }, - { - "lang": "vb", - "value": "CatLibrary.Tom" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Tom", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 288.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

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

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class Tom" - }, - { - "lang": "vb", - "value": "Public Class Tom" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - } - ], - "derivedClasses": [ - { - "isEii": false, - "isExtensionMethod": false, - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 2.0 - } - ], - "level": 1.0, - "inheritedMembers": [ - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.Tom.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.Tom.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_Tom.md&value=---%0Auid%3A%20CatLibrary.Tom%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L289", - "description": "Tom class is only inherit from Object. Not any member inside itself.", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_Tom", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.TomFromBaseClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.TomFromBaseClass.html.view.verified.json deleted file mode 100644 index 449e34012f1..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.TomFromBaseClass.html.view.verified.json +++ /dev/null @@ -1,881 +0,0 @@ -{ - "uid": "CatLibrary.TomFromBaseClass", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "children": [ - { - "inConstructor": true, - "typePropertyName": "inConstructor", - "id": "constructors", - "children": [ - { - "uid": "CatLibrary.TomFromBaseClass.#ctor(System.Int32)", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary.TomFromBaseClass", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "TomFromBaseClass(int)" - }, - { - "lang": "vb", - "value": "New(Integer)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "TomFromBaseClass.TomFromBaseClass(int)" - }, - { - "lang": "vb", - "value": "TomFromBaseClass.New(Integer)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.TomFromBaseClass.TomFromBaseClass(int)" - }, - { - "lang": "vb", - "value": "CatLibrary.TomFromBaseClass.New(Integer)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public TomFromBaseClass(int k)" - }, - { - "lang": "vb", - "value": "Public Sub New(k As Integer)" - } - ], - "parameters": [ - { - "id": "k", - "type": { - "uid": "System.Int32", - "name": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "int" - }, - { - "lang": "vb", - "value": "Integer" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "description": "" - } - ] - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": ".ctor", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 315.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "CatLibrary", - "example": [], - "overload": { - "uid": "CatLibrary.TomFromBaseClass.#ctor*", - "name": [ - { - "lang": "csharp", - "value": "TomFromBaseClass" - }, - { - "lang": "vb", - "value": "New" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "TomFromBaseClass.TomFromBaseClass" - }, - { - "lang": "vb", - "value": "TomFromBaseClass.New" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.TomFromBaseClass.TomFromBaseClass" - }, - { - "lang": "vb", - "value": "CatLibrary.TomFromBaseClass.New" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "id": "CatLibrary_TomFromBaseClass__ctor_" - }, - "level": 0.0, - "type": "constructor", - "summary": "

This is a #ctor with parameter

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_TomFromBaseClass__ctor_System_Int32_.md&value=---%0Auid%3A%20CatLibrary.TomFromBaseClass.%23ctor(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L316", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_TomFromBaseClass__ctor_System_Int32_", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "TomFromBaseClass" - }, - { - "lang": "vb", - "value": "TomFromBaseClass" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "TomFromBaseClass" - }, - { - "lang": "vb", - "value": "TomFromBaseClass" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.TomFromBaseClass" - }, - { - "lang": "vb", - "value": "CatLibrary.TomFromBaseClass" - } - ], - "type": "class", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "TomFromBaseClass", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 308.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0 - }, - "summary": "

TomFromBaseClass inherits from @

\n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public class TomFromBaseClass : Tom" - }, - { - "lang": "vb", - "value": "Public Class TomFromBaseClass Inherits Tom" - } - ] - }, - "inheritance": [ - { - "uid": "System.Object", - "isEii": false, - "isExtensionMethod": false, - "parent": "System", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 0.0 - }, - { - "uid": "CatLibrary.Tom", - "isEii": false, - "isExtensionMethod": false, - "parent": "CatLibrary", - "href": "CatLibrary.Tom.html", - "name": [ - { - "lang": "csharp", - "value": "Tom" - }, - { - "lang": "vb", - "value": "Tom" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Tom" - }, - { - "lang": "vb", - "value": "Tom" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Tom" - }, - { - "lang": "vb", - "value": "CatLibrary.Tom" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "index": 1.0 - } - ], - "level": 2.0, - "inheritedMembers": [ - { - "uid": "CatLibrary.Tom.TomMethod(CatLibrary.Complex{CatLibrary.TomFromBaseClass,CatLibrary.TomFromBaseClass},System.Tuple{System.String,CatLibrary.Tom})", - "isExtensionMethod": false, - "parent": "CatLibrary.Tom", - "isExternal": true, - "href": "CatLibrary.Tom.html#CatLibrary_Tom_TomMethod_CatLibrary_Complex_CatLibrary_TomFromBaseClass_CatLibrary_TomFromBaseClass__System_Tuple_System_String_CatLibrary_Tom__", - "name": [ - { - "lang": "csharp", - "value": "TomMethod(Complex, Tuple)" - }, - { - "lang": "vb", - "value": "TomMethod(Complex(Of TomFromBaseClass, TomFromBaseClass), Tuple(Of String, Tom))" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Tom.TomMethod(Complex, Tuple)" - }, - { - "lang": "vb", - "value": "Tom.TomMethod(Complex(Of TomFromBaseClass, TomFromBaseClass), Tuple(Of String, Tom))" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Tom.TomMethod(CatLibrary.Complex, System.Tuple)" - }, - { - "lang": "vb", - "value": "CatLibrary.Tom.TomMethod(CatLibrary.Complex(Of CatLibrary.TomFromBaseClass, CatLibrary.TomFromBaseClass), System.Tuple(Of String, CatLibrary.Tom))" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "TomMethod(Complex<TomFromBaseClass, TomFromBaseClass>, Tuple<string, Tom>)" - }, - { - "lang": "vb", - "value": "TomMethod(Complex(Of TomFromBaseClass, TomFromBaseClass), Tuple(Of String, Tom))" - } - ], - "level": 0.0, - "summary": "

This is a Tom Method with complex type as return

\n", - "type": "method", - "platform": null, - "isEii": false - }, - { - "uid": "System.Object.Equals(System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object)" - }, - { - "lang": "vb", - "value": "Equals(Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.Equals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)", - "name": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.Equals(object, object)" - }, - { - "lang": "vb", - "value": "Object.Equals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Equals(object, object)" - }, - { - "lang": "vb", - "value": "Equals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetHashCode", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode", - "name": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetHashCode()" - }, - { - "lang": "vb", - "value": "Object.GetHashCode()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetHashCode()" - }, - { - "lang": "vb", - "value": "GetHashCode()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.GetType", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.gettype", - "name": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.GetType()" - }, - { - "lang": "vb", - "value": "Object.GetType()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "GetType()" - }, - { - "lang": "vb", - "value": "GetType()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.MemberwiseClone", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone", - "name": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.MemberwiseClone()" - }, - { - "lang": "vb", - "value": "Object.MemberwiseClone()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MemberwiseClone()" - }, - { - "lang": "vb", - "value": "MemberwiseClone()" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ReferenceEquals(System.Object,System.Object)", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals", - "name": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "Object.ReferenceEquals(Object, Object)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ReferenceEquals(object, object)" - }, - { - "lang": "vb", - "value": "ReferenceEquals(Object, Object)" - } - ], - "level": 0.0 - }, - { - "uid": "System.Object.ToString", - "isEii": false, - "isExtensionMethod": false, - "parent": "System.Object", - "isExternal": true, - "href": "https://learn.microsoft.com/dotnet/api/system.object.tostring", - "name": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object.ToString()" - }, - { - "lang": "vb", - "value": "Object.ToString()" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "ToString()" - }, - { - "lang": "vb", - "value": "ToString()" - } - ], - "level": 0.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.TomFromBaseClass.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.TomFromBaseClass.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=CatLibrary_TomFromBaseClass.md&value=---%0Auid%3A%20CatLibrary.TomFromBaseClass%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L309", - "description": "TomFromBaseClass inherits from @", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "CatLibrary_TomFromBaseClass", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": true, - "inClass": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.html.view.verified.json deleted file mode 100644 index 9c9e275d16a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.html.view.verified.json +++ /dev/null @@ -1,854 +0,0 @@ -{ - "uid": "CatLibrary", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inNamespace": true, - "typePropertyName": "inNamespace", - "id": "namespaces", - "children": [ - { - "uid": "CatLibrary.Core", - "isExtensionMethod": false, - "href": "CatLibrary.html", - "name": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatLibrary.Core" - }, - { - "lang": "vb", - "value": "CatLibrary.Core" - } - ], - "level": 0.0, - "summary": "", - "type": "namespace", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Core", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inClass": true, - "typePropertyName": "inClass", - "id": "classes", - "children": [ - { - "uid": "CatLibrary.CatException`1", - "isExtensionMethod": false, - "href": "CatLibrary.CatException-1.html", - "name": [ - { - "lang": "csharp", - "value": "CatException" - }, - { - "lang": "vb", - "value": "CatException(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatException" - }, - { - "lang": "vb", - "value": "CatException(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.CatException" - }, - { - "lang": "vb", - "value": "CatLibrary.CatException(Of T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "CatException<T>" - }, - { - "lang": "vb", - "value": "CatException(Of T)" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_CatException_1", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Cat`2", - "isExtensionMethod": false, - "parent": "CatLibrary", - "href": "CatLibrary.Cat-2.html", - "name": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Cat" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Cat" - }, - { - "lang": "vb", - "value": "CatLibrary.Cat(Of T, K)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Cat<T, K>" - }, - { - "lang": "vb", - "value": "Cat(Of T, K)" - } - ], - "level": 0.0, - "summary": "

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", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Cat_2", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Complex`2", - "isExtensionMethod": false, - "href": "CatLibrary.Complex-2.html", - "name": [ - { - "lang": "csharp", - "value": "Complex" - }, - { - "lang": "vb", - "value": "Complex(Of T, J)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Complex" - }, - { - "lang": "vb", - "value": "Complex(Of T, J)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Complex" - }, - { - "lang": "vb", - "value": "CatLibrary.Complex(Of T, J)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "Complex<T, J>" - }, - { - "lang": "vb", - "value": "Complex(Of T, J)" - } - ], - "level": 0.0, - "summary": "", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Complex_2", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.ICatExtension", - "isExtensionMethod": false, - "parent": "CatLibrary", - "href": "CatLibrary.ICatExtension.html", - "name": [ - { - "lang": "csharp", - "value": "ICatExtension" - }, - { - "lang": "vb", - "value": "ICatExtension" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICatExtension" - }, - { - "lang": "vb", - "value": "ICatExtension" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICatExtension" - }, - { - "lang": "vb", - "value": "CatLibrary.ICatExtension" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

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

\n

This class must be public and static.

Also it shouldn't be a geneic class

\n", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_ICatExtension", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.Tom", - "isExtensionMethod": false, - "parent": "CatLibrary", - "href": "CatLibrary.Tom.html", - "name": [ - { - "lang": "csharp", - "value": "Tom" - }, - { - "lang": "vb", - "value": "Tom" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "Tom" - }, - { - "lang": "vb", - "value": "Tom" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.Tom" - }, - { - "lang": "vb", - "value": "CatLibrary.Tom" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

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

\n", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_Tom", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.TomFromBaseClass", - "isExtensionMethod": false, - "href": "CatLibrary.TomFromBaseClass.html", - "name": [ - { - "lang": "csharp", - "value": "TomFromBaseClass" - }, - { - "lang": "vb", - "value": "TomFromBaseClass" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "TomFromBaseClass" - }, - { - "lang": "vb", - "value": "TomFromBaseClass" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.TomFromBaseClass" - }, - { - "lang": "vb", - "value": "CatLibrary.TomFromBaseClass" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

TomFromBaseClass inherits from @

\n", - "type": "class", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_TomFromBaseClass", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inInterface": true, - "typePropertyName": "inInterface", - "id": "interfaces", - "children": [ - { - "uid": "CatLibrary.IAnimal", - "isExtensionMethod": false, - "parent": "CatLibrary", - "href": "CatLibrary.IAnimal.html", - "name": [ - { - "lang": "csharp", - "value": "IAnimal" - }, - { - "lang": "vb", - "value": "IAnimal" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "IAnimal" - }, - { - "lang": "vb", - "value": "IAnimal" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.IAnimal" - }, - { - "lang": "vb", - "value": "CatLibrary.IAnimal" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

This is basic interface of all animal.

\n", - "type": "interface", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_IAnimal", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.ICat", - "isExtensionMethod": false, - "parent": "CatLibrary", - "href": "CatLibrary.ICat.html", - "name": [ - { - "lang": "csharp", - "value": "ICat" - }, - { - "lang": "vb", - "value": "ICat" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ICat" - }, - { - "lang": "vb", - "value": "ICat" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.ICat" - }, - { - "lang": "vb", - "value": "CatLibrary.ICat" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

Cat's interface

\n", - "type": "interface", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_ICat", - "hideTitleType": false, - "hideSubtitle": false - } - ] - }, - { - "inDelegate": true, - "typePropertyName": "inDelegate", - "id": "delegates", - "children": [ - { - "uid": "CatLibrary.FakeDelegate`1", - "isExtensionMethod": false, - "href": "CatLibrary.FakeDelegate-1.html", - "name": [ - { - "lang": "csharp", - "value": "FakeDelegate" - }, - { - "lang": "vb", - "value": "FakeDelegate(Of T)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "FakeDelegate" - }, - { - "lang": "vb", - "value": "FakeDelegate(Of T)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.FakeDelegate" - }, - { - "lang": "vb", - "value": "CatLibrary.FakeDelegate(Of T)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "FakeDelegate<T>" - }, - { - "lang": "vb", - "value": "FakeDelegate(Of T)" - } - ], - "level": 0.0, - "summary": "

Fake delegate

\n", - "type": "delegate", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_FakeDelegate_1", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.MRefDelegate`3", - "isExtensionMethod": false, - "href": "CatLibrary.MRefDelegate-3.html", - "name": [ - { - "lang": "csharp", - "value": "MRefDelegate" - }, - { - "lang": "vb", - "value": "MRefDelegate(Of K, T, L)" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "MRefDelegate" - }, - { - "lang": "vb", - "value": "MRefDelegate(Of K, T, L)" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.MRefDelegate" - }, - { - "lang": "vb", - "value": "CatLibrary.MRefDelegate(Of K, T, L)" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MRefDelegate<K, T, L>" - }, - { - "lang": "vb", - "value": "MRefDelegate(Of K, T, L)" - } - ], - "level": 0.0, - "summary": "

Generic delegate with many constrains.

\n", - "type": "delegate", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_MRefDelegate_3", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "CatLibrary.MRefNormalDelegate", - "isExtensionMethod": false, - "href": "CatLibrary.MRefNormalDelegate.html", - "name": [ - { - "lang": "csharp", - "value": "MRefNormalDelegate" - }, - { - "lang": "vb", - "value": "MRefNormalDelegate" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "MRefNormalDelegate" - }, - { - "lang": "vb", - "value": "MRefNormalDelegate" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary.MRefNormalDelegate" - }, - { - "lang": "vb", - "value": "CatLibrary.MRefNormalDelegate" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

Delegate in the namespace

\n", - "type": "delegate", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary_MRefNormalDelegate", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "CatLibrary" - }, - { - "lang": "vb", - "value": "CatLibrary" - } - ], - "type": "namespace", - "assemblies": [ - "CatLibrary" - ], - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/CatLibrary.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/CatLibrary.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "CatLibrary", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json deleted file mode 100644 index 8df31d57d1d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json +++ /dev/null @@ -1,655 +0,0 @@ -{ - "uid": "MRef.Demo.Enumeration.ColorType", - "isEii": false, - "isExtensionMethod": false, - "parent": { - "uid": "MRef.Demo.Enumeration", - "isEii": false, - "isExtensionMethod": false, - "href": "MRef.html", - "name": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "level": 0.0 - }, - "children": [ - { - "inField": true, - "typePropertyName": "inField", - "id": "fields", - "children": [ - { - "uid": "MRef.Demo.Enumeration.ColorType.Red", - "isEii": false, - "isExtensionMethod": false, - "parent": "MRef.Demo.Enumeration.ColorType", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Red" - }, - { - "lang": "vb", - "value": "Red" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ColorType.Red" - }, - { - "lang": "vb", - "value": "ColorType.Red" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration.ColorType.Red" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration.ColorType.Red" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "Red = 0" - }, - { - "lang": "vb", - "value": "Red = 0" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "MRef.Demo.Enumeration.ColorType", - "name": [ - { - "lang": "csharp", - "value": "ColorType" - }, - { - "lang": "vb", - "value": "ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ColorType" - }, - { - "lang": "vb", - "value": "ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration.ColorType" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration.ColorType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Red", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 410.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "MRef.Demo.Enumeration", - "example": [], - "level": 0.0, - "type": "field", - "summary": "

this color is red

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=MRef_Demo_Enumeration_ColorType_Red.md&value=---%0Auid%3A%20MRef.Demo.Enumeration.ColorType.Red%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L411", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "MRef_Demo_Enumeration_ColorType_Red", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "MRef.Demo.Enumeration.ColorType.Blue", - "isEii": false, - "isExtensionMethod": false, - "parent": "MRef.Demo.Enumeration.ColorType", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Blue" - }, - { - "lang": "vb", - "value": "Blue" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ColorType.Blue" - }, - { - "lang": "vb", - "value": "ColorType.Blue" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration.ColorType.Blue" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration.ColorType.Blue" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "Blue = 1" - }, - { - "lang": "vb", - "value": "Blue = 1" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "MRef.Demo.Enumeration.ColorType", - "name": [ - { - "lang": "csharp", - "value": "ColorType" - }, - { - "lang": "vb", - "value": "ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ColorType" - }, - { - "lang": "vb", - "value": "ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration.ColorType" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration.ColorType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Blue", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 414.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "MRef.Demo.Enumeration", - "example": [], - "level": 0.0, - "type": "field", - "summary": "

blue like river

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=MRef_Demo_Enumeration_ColorType_Blue.md&value=---%0Auid%3A%20MRef.Demo.Enumeration.ColorType.Blue%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L415", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "MRef_Demo_Enumeration_ColorType_Blue", - "hideTitleType": false, - "hideSubtitle": false - }, - { - "uid": "MRef.Demo.Enumeration.ColorType.Yellow", - "isEii": false, - "isExtensionMethod": false, - "parent": "MRef.Demo.Enumeration.ColorType", - "isExternal": false, - "name": [ - { - "lang": "csharp", - "value": "Yellow" - }, - { - "lang": "vb", - "value": "Yellow" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ColorType.Yellow" - }, - { - "lang": "vb", - "value": "ColorType.Yellow" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration.ColorType.Yellow" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration.ColorType.Yellow" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "Yellow = 2" - }, - { - "lang": "vb", - "value": "Yellow = 2" - } - ], - "return": null, - "fieldValue": { - "type": { - "uid": "MRef.Demo.Enumeration.ColorType", - "name": [ - { - "lang": "csharp", - "value": "ColorType" - }, - { - "lang": "vb", - "value": "ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ColorType" - }, - { - "lang": "vb", - "value": "ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration.ColorType" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration.ColorType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - } - } - }, - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "Yellow", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 418.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": "MRef.Demo.Enumeration", - "example": [], - "level": 0.0, - "type": "field", - "summary": "

yellow comes from desert

\n", - "platform": null, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=MRef_Demo_Enumeration_ColorType_Yellow.md&value=---%0Auid%3A%20MRef.Demo.Enumeration.ColorType.Yellow%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L419", - "description": "", - "remarks": "", - "conceptual": "", - "implements": "", - "seealso": [], - "id": "MRef_Demo_Enumeration_ColorType_Yellow", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "ColorType" - }, - { - "lang": "vb", - "value": "ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ColorType" - }, - { - "lang": "vb", - "value": "ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration.ColorType" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration.ColorType" - } - ], - "type": "enum", - "source": { - "remote": { - "path": "samples/seed/dotnet/solution/CatLibrary/Class1.cs", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "id": "ColorType", - "path": "dotnet/solution/CatLibrary/Class1.cs", - "startLine": 405.0, - "endLine": 0.0 - }, - "assemblies": [ - "CatLibrary" - ], - "namespace": { - "uid": "MRef.Demo.Enumeration", - "isEii": false, - "isExtensionMethod": false, - "href": "MRef.html", - "name": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "level": 0.0 - }, - "summary": "

Enumeration ColorType

\n", - "remarks": "

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

\n
    \n", - "example": [], - "syntax": { - "content": [ - { - "lang": "csharp", - "value": "public enum ColorType" - }, - { - "lang": "vb", - "value": "Public Enum ColorType" - } - ] - }, - "seealso": [ - { - "linkType": "cRef", - "type": { - "uid": "System.Object", - "name": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "object" - }, - { - "lang": "vb", - "value": "Object" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ] - }, - "isCref": true - } - ], - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/MRef.Demo.Enumeration.ColorType.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/MRef.Demo.Enumeration.ColorType.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=MRef_Demo_Enumeration_ColorType.md&value=---%0Auid%3A%20MRef.Demo.Enumeration.ColorType%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/solution/CatLibrary/Class1.cs/#L406", - "description": "Enumeration ColorType", - "conceptual": "", - "implements": "", - "id": "MRef_Demo_Enumeration_ColorType", - "hideTitleType": false, - "hideSubtitle": false, - "isClass": false, - "inEnum": true, - "isEnum": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/MRef.Demo.Enumeration.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/MRef.Demo.Enumeration.html.view.verified.json deleted file mode 100644 index 99983e91838..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/MRef.Demo.Enumeration.html.view.verified.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "uid": "MRef.Demo.Enumeration", - "isEii": false, - "isExtensionMethod": false, - "children": [ - { - "inEnum": true, - "typePropertyName": "inEnum", - "id": "enums", - "children": [ - { - "uid": "MRef.Demo.Enumeration.ColorType", - "isExtensionMethod": false, - "parent": "MRef.Demo.Enumeration", - "href": "MRef.Demo.Enumeration.ColorType.html", - "name": [ - { - "lang": "csharp", - "value": "ColorType" - }, - { - "lang": "vb", - "value": "ColorType" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "ColorType" - }, - { - "lang": "vb", - "value": "ColorType" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration.ColorType" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration.ColorType" - } - ], - "specName": [ - { - "lang": "csharp", - "value": "" - }, - { - "lang": "vb", - "value": "" - } - ], - "level": 0.0, - "summary": "

    Enumeration ColorType

    \n", - "type": "enum", - "platform": null, - "isEii": false, - "docurl": "", - "sourceurl": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "MRef_Demo_Enumeration_ColorType", - "hideTitleType": false, - "hideSubtitle": false - } - ] - } - ], - "langs": [ - "csharp", - "vb" - ], - "name": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "nameWithType": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "fullName": [ - { - "lang": "csharp", - "value": "MRef.Demo.Enumeration" - }, - { - "lang": "vb", - "value": "MRef.Demo.Enumeration" - } - ], - "type": "namespace", - "assemblies": [ - "CatLibrary" - ], - "level": 0.0, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/MRef.Demo.Enumeration.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/MRef.Demo.Enumeration.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "yamlmime": "ManagedReference", - "docurl": "", - "sourceurl": "", - "summary": "", - "description": "", - "remarks": "", - "conceptual": "", - "syntax": "", - "implements": "", - "example": "", - "seealso": [], - "id": "MRef_Demo_Enumeration", - "hideTitleType": false, - "hideSubtitle": false, - "isNamespace": true, - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.html.view.verified.json deleted file mode 100644 index 8aae4e24ff1..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.html.view.verified.json +++ /dev/null @@ -1,567 +0,0 @@ -{ - "order": 100.0, - "items": [ - { - "name": "BuildFromAssembly", - "href": "BuildFromAssembly.html", - "topicHref": "BuildFromAssembly.html", - "topicUid": "BuildFromAssembly", - "items": [ - { - "name": "Class1", - "href": "BuildFromAssembly.Class1.html", - "topicHref": "BuildFromAssembly.Class1.html", - "topicUid": "BuildFromAssembly.Class1", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Issue5432", - "href": "BuildFromAssembly.Issue5432.html", - "topicHref": "BuildFromAssembly.Issue5432.html", - "topicUid": "BuildFromAssembly.Issue5432", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "BuildFromCSharpSourceCode", - "href": "BuildFromCSharpSourceCode.html", - "topicHref": "BuildFromCSharpSourceCode.html", - "topicUid": "BuildFromCSharpSourceCode", - "items": [ - { - "name": "CSharp", - "href": "BuildFromCSharpSourceCode.CSharp.html", - "topicHref": "BuildFromCSharpSourceCode.CSharp.html", - "topicUid": "BuildFromCSharpSourceCode.CSharp", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "BuildFromProject", - "href": "BuildFromProject.html", - "topicHref": "BuildFromProject.html", - "topicUid": "BuildFromProject", - "items": [ - { - "name": "Issue8540", - "href": "BuildFromProject.Issue8540.html", - "topicHref": "BuildFromProject.Issue8540.html", - "topicUid": "BuildFromProject.Issue8540", - "items": [ - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.html", - "topicHref": "BuildFromProject.Issue8540.A.html", - "topicUid": "BuildFromProject.Issue8540.A", - "items": [ - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.A.html", - "topicHref": "BuildFromProject.Issue8540.A.A.html", - "topicUid": "BuildFromProject.Issue8540.A.A", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 4.0 - }, - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.html", - "topicHref": "BuildFromProject.Issue8540.B.html", - "topicUid": "BuildFromProject.Issue8540.B", - "items": [ - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.B.html", - "topicHref": "BuildFromProject.Issue8540.B.B.html", - "topicUid": "BuildFromProject.Issue8540.B.B", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 4.0 - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "Class1", - "href": "BuildFromProject.Class1.html", - "topicHref": "BuildFromProject.Class1.html", - "topicUid": "BuildFromProject.Class1", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.IIssue8948", - "href": "BuildFromProject.Class1.IIssue8948.html", - "topicHref": "BuildFromProject.Class1.IIssue8948.html", - "topicUid": "BuildFromProject.Class1.IIssue8948", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8665", - "href": "BuildFromProject.Class1.Issue8665.html", - "topicHref": "BuildFromProject.Class1.Issue8665.html", - "topicUid": "BuildFromProject.Class1.Issue8665", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8696Attribute", - "href": "BuildFromProject.Class1.Issue8696Attribute.html", - "topicHref": "BuildFromProject.Class1.Issue8696Attribute.html", - "topicUid": "BuildFromProject.Class1.Issue8696Attribute", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8948", - "href": "BuildFromProject.Class1.Issue8948.html", - "topicHref": "BuildFromProject.Class1.Issue8948.html", - "topicUid": "BuildFromProject.Class1.Issue8948", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue9260", - "href": "BuildFromProject.Class1.Issue9260.html", - "topicHref": "BuildFromProject.Class1.Issue9260.html", - "topicUid": "BuildFromProject.Class1.Issue9260", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Test", - "href": "BuildFromProject.Class1.Test-1.html", - "topicHref": "BuildFromProject.Class1.Test-1.html", - "topicUid": "BuildFromProject.Class1.Test`1", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Dog", - "href": "BuildFromProject.Dog.html", - "topicHref": "BuildFromProject.Dog.html", - "topicUid": "BuildFromProject.Dog", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "IInheritdoc", - "href": "BuildFromProject.IInheritdoc.html", - "topicHref": "BuildFromProject.IInheritdoc.html", - "topicUid": "BuildFromProject.IInheritdoc", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc", - "href": "BuildFromProject.Inheritdoc.html", - "topicHref": "BuildFromProject.Inheritdoc.html", - "topicUid": "BuildFromProject.Inheritdoc", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366", - "href": "BuildFromProject.Inheritdoc.Issue6366.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366.Class1", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366.Class1`1", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366.Class2", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366.Class2", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue7035", - "href": "BuildFromProject.Inheritdoc.Issue7035.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7035.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue7035", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue7484", - "href": "BuildFromProject.Inheritdoc.Issue7484.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7484.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue7484", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue8101", - "href": "BuildFromProject.Inheritdoc.Issue8101.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8101.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue8101", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue8129", - "href": "BuildFromProject.Inheritdoc.Issue8129.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8129.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue8129", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Issue8725", - "href": "BuildFromProject.Issue8725.html", - "topicHref": "BuildFromProject.Issue8725.html", - "topicUid": "BuildFromProject.Issue8725", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "BuildFromVBSourceCode", - "href": "BuildFromVBSourceCode.html", - "topicHref": "BuildFromVBSourceCode.html", - "topicUid": "BuildFromVBSourceCode", - "items": [ - { - "name": "BaseClass1", - "href": "BuildFromVBSourceCode.BaseClass1.html", - "topicHref": "BuildFromVBSourceCode.BaseClass1.html", - "topicUid": "BuildFromVBSourceCode.BaseClass1", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1", - "href": "BuildFromVBSourceCode.Class1.html", - "topicHref": "BuildFromVBSourceCode.Class1.html", - "topicUid": "BuildFromVBSourceCode.Class1", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "CatLibrary", - "href": "CatLibrary.html", - "topicHref": "CatLibrary.html", - "topicUid": "CatLibrary", - "items": [ - { - "name": "Core", - "href": "CatLibrary.Core.html", - "topicHref": "CatLibrary.Core.html", - "topicUid": "CatLibrary.Core", - "items": [ - { - "name": "ContainersRefType", - "href": "CatLibrary.Core.ContainersRefType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.html", - "topicUid": "CatLibrary.Core.ContainersRefType", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ColorType", - "href": "CatLibrary.Core.ContainersRefType.ColorType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ColorType.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ColorType", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeChild", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeChildInterface", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeDelegate", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ExplicitLayoutClass", - "href": "CatLibrary.Core.ExplicitLayoutClass.html", - "topicHref": "CatLibrary.Core.ExplicitLayoutClass.html", - "topicUid": "CatLibrary.Core.ExplicitLayoutClass", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Issue231", - "href": "CatLibrary.Core.Issue231.html", - "topicHref": "CatLibrary.Core.Issue231.html", - "topicUid": "CatLibrary.Core.Issue231", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "CatException", - "href": "CatLibrary.CatException-1.html", - "topicHref": "CatLibrary.CatException-1.html", - "topicUid": "CatLibrary.CatException`1", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Cat", - "href": "CatLibrary.Cat-2.html", - "topicHref": "CatLibrary.Cat-2.html", - "topicUid": "CatLibrary.Cat`2", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Complex", - "href": "CatLibrary.Complex-2.html", - "topicHref": "CatLibrary.Complex-2.html", - "topicUid": "CatLibrary.Complex`2", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "FakeDelegate", - "href": "CatLibrary.FakeDelegate-1.html", - "topicHref": "CatLibrary.FakeDelegate-1.html", - "topicUid": "CatLibrary.FakeDelegate`1", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "IAnimal", - "href": "CatLibrary.IAnimal.html", - "topicHref": "CatLibrary.IAnimal.html", - "topicUid": "CatLibrary.IAnimal", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "ICat", - "href": "CatLibrary.ICat.html", - "topicHref": "CatLibrary.ICat.html", - "topicUid": "CatLibrary.ICat", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "ICatExtension", - "href": "CatLibrary.ICatExtension.html", - "topicHref": "CatLibrary.ICatExtension.html", - "topicUid": "CatLibrary.ICatExtension", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "MRefDelegate", - "href": "CatLibrary.MRefDelegate-3.html", - "topicHref": "CatLibrary.MRefDelegate-3.html", - "topicUid": "CatLibrary.MRefDelegate`3", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "MRefNormalDelegate", - "href": "CatLibrary.MRefNormalDelegate.html", - "topicHref": "CatLibrary.MRefNormalDelegate.html", - "topicUid": "CatLibrary.MRefNormalDelegate", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Tom", - "href": "CatLibrary.Tom.html", - "topicHref": "CatLibrary.Tom.html", - "topicUid": "CatLibrary.Tom", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "TomFromBaseClass", - "href": "CatLibrary.TomFromBaseClass.html", - "topicHref": "CatLibrary.TomFromBaseClass.html", - "topicUid": "CatLibrary.TomFromBaseClass", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "MRef.Demo.Enumeration", - "href": "MRef.Demo.Enumeration.html", - "topicHref": "MRef.Demo.Enumeration.html", - "topicUid": "MRef.Demo.Enumeration", - "items": [ - { - "name": "ColorType", - "href": "MRef.Demo.Enumeration.ColorType.html", - "topicHref": "MRef.Demo.Enumeration.ColorType.html", - "topicUid": "MRef.Demo.Enumeration.ColorType", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - } - ], - "memberLayout": "SamePage", - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/api/toc.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "api/toc.html", - "_rel": "../", - "_tocKey": "~/obj/api/toc.yml", - "_tocPath": "api/toc.html", - "_tocRel": "toc.html", - "topicHref": null, - "tocHref": null, - "name": null, - "level": 1.0, - "leaf": false, - "title": "Table of Content", - "_disableToc": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.json.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.json.view.verified.json deleted file mode 100644 index 220c73e2fd6..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.json.view.verified.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "content": "{\"order\":100,\"items\":[{\"name\":\"BuildFromAssembly\",\"href\":\"BuildFromAssembly.html\",\"topicHref\":\"BuildFromAssembly.html\",\"topicUid\":\"BuildFromAssembly\",\"items\":[{\"name\":\"Class1\",\"href\":\"BuildFromAssembly.Class1.html\",\"topicHref\":\"BuildFromAssembly.Class1.html\",\"topicUid\":\"BuildFromAssembly.Class1\"},{\"name\":\"Issue5432\",\"href\":\"BuildFromAssembly.Issue5432.html\",\"topicHref\":\"BuildFromAssembly.Issue5432.html\",\"topicUid\":\"BuildFromAssembly.Issue5432\"}]},{\"name\":\"BuildFromCSharpSourceCode\",\"href\":\"BuildFromCSharpSourceCode.html\",\"topicHref\":\"BuildFromCSharpSourceCode.html\",\"topicUid\":\"BuildFromCSharpSourceCode\",\"items\":[{\"name\":\"CSharp\",\"href\":\"BuildFromCSharpSourceCode.CSharp.html\",\"topicHref\":\"BuildFromCSharpSourceCode.CSharp.html\",\"topicUid\":\"BuildFromCSharpSourceCode.CSharp\"}]},{\"name\":\"BuildFromProject\",\"href\":\"BuildFromProject.html\",\"topicHref\":\"BuildFromProject.html\",\"topicUid\":\"BuildFromProject\",\"items\":[{\"name\":\"Issue8540\",\"href\":\"BuildFromProject.Issue8540.html\",\"topicHref\":\"BuildFromProject.Issue8540.html\",\"topicUid\":\"BuildFromProject.Issue8540\",\"items\":[{\"name\":\"A\",\"href\":\"BuildFromProject.Issue8540.A.html\",\"topicHref\":\"BuildFromProject.Issue8540.A.html\",\"topicUid\":\"BuildFromProject.Issue8540.A\",\"items\":[{\"name\":\"A\",\"href\":\"BuildFromProject.Issue8540.A.A.html\",\"topicHref\":\"BuildFromProject.Issue8540.A.A.html\",\"topicUid\":\"BuildFromProject.Issue8540.A.A\"}]},{\"name\":\"B\",\"href\":\"BuildFromProject.Issue8540.B.html\",\"topicHref\":\"BuildFromProject.Issue8540.B.html\",\"topicUid\":\"BuildFromProject.Issue8540.B\",\"items\":[{\"name\":\"B\",\"href\":\"BuildFromProject.Issue8540.B.B.html\",\"topicHref\":\"BuildFromProject.Issue8540.B.B.html\",\"topicUid\":\"BuildFromProject.Issue8540.B.B\"}]}]},{\"name\":\"Class1\",\"href\":\"BuildFromProject.Class1.html\",\"topicHref\":\"BuildFromProject.Class1.html\",\"topicUid\":\"BuildFromProject.Class1\"},{\"name\":\"Class1.IIssue8948\",\"href\":\"BuildFromProject.Class1.IIssue8948.html\",\"topicHref\":\"BuildFromProject.Class1.IIssue8948.html\",\"topicUid\":\"BuildFromProject.Class1.IIssue8948\"},{\"name\":\"Class1.Issue8665\",\"href\":\"BuildFromProject.Class1.Issue8665.html\",\"topicHref\":\"BuildFromProject.Class1.Issue8665.html\",\"topicUid\":\"BuildFromProject.Class1.Issue8665\"},{\"name\":\"Class1.Issue8696Attribute\",\"href\":\"BuildFromProject.Class1.Issue8696Attribute.html\",\"topicHref\":\"BuildFromProject.Class1.Issue8696Attribute.html\",\"topicUid\":\"BuildFromProject.Class1.Issue8696Attribute\"},{\"name\":\"Class1.Issue8948\",\"href\":\"BuildFromProject.Class1.Issue8948.html\",\"topicHref\":\"BuildFromProject.Class1.Issue8948.html\",\"topicUid\":\"BuildFromProject.Class1.Issue8948\"},{\"name\":\"Class1.Issue9260\",\"href\":\"BuildFromProject.Class1.Issue9260.html\",\"topicHref\":\"BuildFromProject.Class1.Issue9260.html\",\"topicUid\":\"BuildFromProject.Class1.Issue9260\"},{\"name\":\"Class1.Test\",\"href\":\"BuildFromProject.Class1.Test-1.html\",\"topicHref\":\"BuildFromProject.Class1.Test-1.html\",\"topicUid\":\"BuildFromProject.Class1.Test`1\"},{\"name\":\"Dog\",\"href\":\"BuildFromProject.Dog.html\",\"topicHref\":\"BuildFromProject.Dog.html\",\"topicUid\":\"BuildFromProject.Dog\"},{\"name\":\"IInheritdoc\",\"href\":\"BuildFromProject.IInheritdoc.html\",\"topicHref\":\"BuildFromProject.IInheritdoc.html\",\"topicUid\":\"BuildFromProject.IInheritdoc\"},{\"name\":\"Inheritdoc\",\"href\":\"BuildFromProject.Inheritdoc.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.html\",\"topicUid\":\"BuildFromProject.Inheritdoc\"},{\"name\":\"Inheritdoc.Issue6366\",\"href\":\"BuildFromProject.Inheritdoc.Issue6366.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue6366.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue6366\"},{\"name\":\"Inheritdoc.Issue6366.Class1\",\"href\":\"BuildFromProject.Inheritdoc.Issue6366.Class1-1.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue6366.Class1-1.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue6366.Class1`1\"},{\"name\":\"Inheritdoc.Issue6366.Class2\",\"href\":\"BuildFromProject.Inheritdoc.Issue6366.Class2.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue6366.Class2.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue6366.Class2\"},{\"name\":\"Inheritdoc.Issue7035\",\"href\":\"BuildFromProject.Inheritdoc.Issue7035.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue7035.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue7035\"},{\"name\":\"Inheritdoc.Issue7484\",\"href\":\"BuildFromProject.Inheritdoc.Issue7484.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue7484.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue7484\"},{\"name\":\"Inheritdoc.Issue8101\",\"href\":\"BuildFromProject.Inheritdoc.Issue8101.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue8101.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue8101\"},{\"name\":\"Inheritdoc.Issue8129\",\"href\":\"BuildFromProject.Inheritdoc.Issue8129.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue8129.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue8129\"},{\"name\":\"Issue8725\",\"href\":\"BuildFromProject.Issue8725.html\",\"topicHref\":\"BuildFromProject.Issue8725.html\",\"topicUid\":\"BuildFromProject.Issue8725\"}]},{\"name\":\"BuildFromVBSourceCode\",\"href\":\"BuildFromVBSourceCode.html\",\"topicHref\":\"BuildFromVBSourceCode.html\",\"topicUid\":\"BuildFromVBSourceCode\",\"items\":[{\"name\":\"BaseClass1\",\"href\":\"BuildFromVBSourceCode.BaseClass1.html\",\"topicHref\":\"BuildFromVBSourceCode.BaseClass1.html\",\"topicUid\":\"BuildFromVBSourceCode.BaseClass1\"},{\"name\":\"Class1\",\"href\":\"BuildFromVBSourceCode.Class1.html\",\"topicHref\":\"BuildFromVBSourceCode.Class1.html\",\"topicUid\":\"BuildFromVBSourceCode.Class1\"}]},{\"name\":\"CatLibrary\",\"href\":\"CatLibrary.html\",\"topicHref\":\"CatLibrary.html\",\"topicUid\":\"CatLibrary\",\"items\":[{\"name\":\"Core\",\"href\":\"CatLibrary.Core.html\",\"topicHref\":\"CatLibrary.Core.html\",\"topicUid\":\"CatLibrary.Core\",\"items\":[{\"name\":\"ContainersRefType\",\"href\":\"CatLibrary.Core.ContainersRefType.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.html\",\"topicUid\":\"CatLibrary.Core.ContainersRefType\"},{\"name\":\"ContainersRefType.ColorType\",\"href\":\"CatLibrary.Core.ContainersRefType.ColorType.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ColorType.html\",\"topicUid\":\"CatLibrary.Core.ContainersRefType.ColorType\"},{\"name\":\"ContainersRefType.ContainersRefTypeChild\",\"href\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html\",\"topicUid\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChild\"},{\"name\":\"ContainersRefType.ContainersRefTypeChildInterface\",\"href\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html\",\"topicUid\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface\"},{\"name\":\"ContainersRefType.ContainersRefTypeDelegate\",\"href\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html\",\"topicUid\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate\"},{\"name\":\"ExplicitLayoutClass\",\"href\":\"CatLibrary.Core.ExplicitLayoutClass.html\",\"topicHref\":\"CatLibrary.Core.ExplicitLayoutClass.html\",\"topicUid\":\"CatLibrary.Core.ExplicitLayoutClass\"},{\"name\":\"Issue231\",\"href\":\"CatLibrary.Core.Issue231.html\",\"topicHref\":\"CatLibrary.Core.Issue231.html\",\"topicUid\":\"CatLibrary.Core.Issue231\"}]},{\"name\":\"CatException\",\"href\":\"CatLibrary.CatException-1.html\",\"topicHref\":\"CatLibrary.CatException-1.html\",\"topicUid\":\"CatLibrary.CatException`1\"},{\"name\":\"Cat\",\"href\":\"CatLibrary.Cat-2.html\",\"topicHref\":\"CatLibrary.Cat-2.html\",\"topicUid\":\"CatLibrary.Cat`2\"},{\"name\":\"Complex\",\"href\":\"CatLibrary.Complex-2.html\",\"topicHref\":\"CatLibrary.Complex-2.html\",\"topicUid\":\"CatLibrary.Complex`2\"},{\"name\":\"FakeDelegate\",\"href\":\"CatLibrary.FakeDelegate-1.html\",\"topicHref\":\"CatLibrary.FakeDelegate-1.html\",\"topicUid\":\"CatLibrary.FakeDelegate`1\"},{\"name\":\"IAnimal\",\"href\":\"CatLibrary.IAnimal.html\",\"topicHref\":\"CatLibrary.IAnimal.html\",\"topicUid\":\"CatLibrary.IAnimal\"},{\"name\":\"ICat\",\"href\":\"CatLibrary.ICat.html\",\"topicHref\":\"CatLibrary.ICat.html\",\"topicUid\":\"CatLibrary.ICat\"},{\"name\":\"ICatExtension\",\"href\":\"CatLibrary.ICatExtension.html\",\"topicHref\":\"CatLibrary.ICatExtension.html\",\"topicUid\":\"CatLibrary.ICatExtension\"},{\"name\":\"MRefDelegate\",\"href\":\"CatLibrary.MRefDelegate-3.html\",\"topicHref\":\"CatLibrary.MRefDelegate-3.html\",\"topicUid\":\"CatLibrary.MRefDelegate`3\"},{\"name\":\"MRefNormalDelegate\",\"href\":\"CatLibrary.MRefNormalDelegate.html\",\"topicHref\":\"CatLibrary.MRefNormalDelegate.html\",\"topicUid\":\"CatLibrary.MRefNormalDelegate\"},{\"name\":\"Tom\",\"href\":\"CatLibrary.Tom.html\",\"topicHref\":\"CatLibrary.Tom.html\",\"topicUid\":\"CatLibrary.Tom\"},{\"name\":\"TomFromBaseClass\",\"href\":\"CatLibrary.TomFromBaseClass.html\",\"topicHref\":\"CatLibrary.TomFromBaseClass.html\",\"topicUid\":\"CatLibrary.TomFromBaseClass\"}]},{\"name\":\"MRef.Demo.Enumeration\",\"href\":\"MRef.Demo.Enumeration.html\",\"topicHref\":\"MRef.Demo.Enumeration.html\",\"topicUid\":\"MRef.Demo.Enumeration\",\"items\":[{\"name\":\"ColorType\",\"href\":\"MRef.Demo.Enumeration.ColorType.html\",\"topicHref\":\"MRef.Demo.Enumeration.ColorType.html\",\"topicUid\":\"MRef.Demo.Enumeration.ColorType\"}]}],\"memberLayout\":\"SamePage\",\"pdf\":true,\"pdfTocPage\":true}" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.pdf.verified.json deleted file mode 100644 index d2c65781fc9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.pdf.verified.json +++ /dev/null @@ -1,8397 +0,0 @@ -{ - "NumberOfPages": 84, - "Pages": [ - { - "Number": 1, - "Text": "Table of ContentsBuildFromAssembly3Class14Issue54325BuildFromCSharpSourceCode6CSharp7BuildFromProject8Issue854010A11A12B13B14Class115Class1.IIssue894820Class1.Issue866521Class1.Issue8696Attribute24Class1.Issue894826Class1.Issue926027Class1.Test28Dog29IInheritdoc31Inheritdoc32Inheritdoc.Issue636634Inheritdoc.Issue6366.Class135Inheritdoc.Issue6366.Class237Inheritdoc.Issue703538Inheritdoc.Issue748439Inheritdoc.Issue810141Inheritdoc.Issue812943Issue872544BuildFromVBSourceCode45BaseClass146Class147CatLibrary49Core51ContainersRefType52ContainersRefType.ColorType54ContainersRefType.ContainersRefTypeChild55ContainersRefType.ContainersRefTypeChildInterface56", - "Links": [ - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 29, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 34, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 39, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 2, - "Text": "ContainersRefType.ContainersRefTypeDelegate57ExplicitLayoutClass58Issue23159CatException60Cat61Complex70FakeDelegate71IAnimal72ICat75ICatExtension76MRefDelegate78MRefNormalDelegate79Tom80TomFromBaseClass82MRef.Demo.Enumeration83ColorType84", - "Links": [ - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 60, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 83, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 84, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 3, - "Text": "3 / 84ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", - "Links": [ - { - "Goto": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 4, - "Text": "4 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 5, - "Text": "5 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 6, - "Text": "6 / 84ClassesCSharpNamespace BuildFromCSharpSourceCode", - "Links": [ - { - "Goto": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 7, - "Text": "7 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 8, - "Text": "8 / 84NamespacesBuildFromProject.Issue8540ClassesClass1Class1.Issue8665Class1.Issue8696AttributeClass1.Issue8948Class1.TestDogClass representing a dog.InheritdocInheritdoc.Issue6366Inheritdoc.Issue6366.Class1Inheritdoc.Issue6366.Class2Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Issue8725A nice classStructsInheritdoc.Issue8129InterfacesClass1.IIssue8948IInheritdocNamespace BuildFromProject", - "Links": [ - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 29, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 34, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 34, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 39, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 39, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 9, - "Text": "9 / 84EnumsClass1.Issue9260", - "Links": [ - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 10, - "Text": "10 / 84NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", - "Links": [ - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 11, - "Text": "11 / 84ClassesANamespace BuildFromProject.Issue8540.A", - "Links": [ - { - "Goto": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 12, - "Text": "12 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 13, - "Text": "13 / 84ClassesBNamespace BuildFromProject.Issue8540.B", - "Links": [ - { - "Goto": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 14, - "Text": "14 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 15, - "Text": "15 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 16, - "Text": "16 / 84ExamplesRemarksFor 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 / 84Inline .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/" - }, - { - "Uri": "https://www.github.com/" - }, - { - "Uri": "https://www.github.com/" - } - ] - }, - { - "Number": 18, - "Text": "18 / 84Remarks@\"\\\\?\\\" @\"\\\\?\\\"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 / 84TestSee 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.double" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.double" - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 20, - "Text": "20 / 84Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948public interface Class1.IIssue8948DoNothing()void DoNothing()", - "Links": [ - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 21, - "Text": "21 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 22, - "Text": "22 / 84Parametersfoo 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" - }, - { - "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.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "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.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 23, - "Text": "23 / 84Property Valueint\uF1C5Foopublic int Foo { get; }", - "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" - } - ] - }, - { - "Number": 24, - "Text": "24 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 25, - "Text": "25 / 84Attribute.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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - } - ] - }, - { - "Number": 26, - "Text": "26 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 27, - "Text": "27 / 84Namespace: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": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 28, - "Text": "28 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 29, - "Text": "29 / 84Namespace:BuildFromProjectAssembly:BuildFromProject.dllClass representing a dog.Inheritanceobject\uF1C5 DogInherited 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()\uF1C5ConstructorsConstructor.Parametersname string\uF1C5Name of the dog.age int\uF1C5Age of the dog.PropertiesClass Dogpublic class Dog\uF12CDog(string, int)public Dog(string name, int age)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 30, - "Text": "30 / 84Age of the dog.Property Valueint\uF1C5Name of the dog.Property Valuestring\uF1C5Agepublic int Age { get; }Namepublic string Name { get; }", - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 31, - "Text": "31 / 84Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", - "Links": [ - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 32, - "Text": "32 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 33, - "Text": "33 / 84This method should do something...public void Issue7629()", - "Links": [] - }, - { - "Number": 34, - "Text": "34 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 35, - "Text": "35 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 36, - "Text": "36 / 84ReturnsTThis text inherited.", - "Links": [] - }, - { - "Number": 37, - "Text": "37 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 34, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 38, - "Text": "38 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 39, - "Text": "39 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 40, - "Coordinates": { - "Left": 28, - "Top": 554.75 - } - } - }, - { - "Goto": { - "PageNumber": 40, - "Coordinates": { - "Left": 28, - "Top": 554.75 - } - } - }, - { - "Goto": { - "PageNumber": 40, - "Coordinates": { - "Left": 28, - "Top": 554.75 - } - } - }, - { - "Goto": { - "PageNumber": 39, - "Coordinates": { - "Left": 28, - "Top": 61.249939 - } - } - }, - { - "Goto": { - "PageNumber": 39, - "Coordinates": { - "Left": 28, - "Top": 61.249939 - } - } - } - ] - }, - { - "Number": 40, - "Text": "40 / 84A 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)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - } - ] - }, - { - "Number": 41, - "Text": "41 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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" - }, - { - "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.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "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": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 42, - "Text": "42 / 84A 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - } - ] - }, - { - "Number": 43, - "Text": "43 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 44, - "Text": "44 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 45, - "Text": "45 / 84ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", - "Links": [ - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 46, - "Text": "46 / 84Namespace: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)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 47, - "Text": "47 / 84Namespace: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; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 48, - "Text": "48 / 84Class1MethodsThis 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)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Goto": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 49, - "Text": "49 / 84NamespacesCatLibrary.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": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 60, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 50, - "Text": "50 / 84MRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", - "Links": [ - { - "Goto": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 51, - "Text": "51 / 84ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", - "Links": [ - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 52, - "Text": "52 / 84Namespace: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; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Coordinates": { - "Left": 28, - "Top": 410.75 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Coordinates": { - "Left": 28, - "Top": 410.75 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Coordinates": { - "Left": 28, - "Top": 410.75 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Coordinates": { - "Left": 28, - "Top": 410.75 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Coordinates": { - "Left": 28, - "Top": 235.24994 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Coordinates": { - "Left": 28, - "Top": 235.24994 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Coordinates": { - "Left": 28, - "Top": 235.24994 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Coordinates": { - "Left": 28, - "Top": 235.24994 - } - } - } - ] - }, - { - "Number": 53, - "Text": "53 / 84Property Valuelong\uF1C5MethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Returnsint\uF1C5EventsEvent TypeEventHandler\uF1C5ContainersRefTypeNonRefMethod(params object[])public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)ContainersRefTypeEventHandlerpublic event EventHandler ContainersRefTypeEventHandler", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "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.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - } - ] - }, - { - "Number": 54, - "Text": "54 / 84Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", - "Links": [ - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 55, - "Text": "55 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 56, - "Text": "56 / 84Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", - "Links": [ - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 57, - "Text": "57 / 84Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", - "Links": [ - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 58, - "Text": "58 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 59, - "Text": "59 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 60, - "Text": "60 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 61, - "Text": "61 / 84Namespace: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" - }, - { - "Uri": "https://en.wikipedia.org/wiki/Cat" - }, - { - "Uri": "https://en.wikipedia.org/wiki/Cat" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 62, - "Text": "62 / 84object.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)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - } - ] - }, - { - "Number": 63, - "Text": "63 / 84nickName 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - } - ] - }, - { - "Number": 64, - "Text": "64 / 84bool\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", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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" - } - ] - }, - { - "Number": 65, - "Text": "65 / 84Property 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "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.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - } - ] - }, - { - "Number": 66, - "Text": "66 / 84Override 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - } - ] - }, - { - "Number": 67, - "Text": "67 / 84This 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - } - ] - }, - { - "Number": 68, - "Text": "68 / 84Addition 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" - }, - { - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Goto": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 69, - "Text": "69 / 84Similar with operaotr +, refer to that topic.Parameterslsr Catrsr int\uF1C5Returnsint\uF1C5operator -(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" - }, - { - "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": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 70, - "Text": "70 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 71, - "Text": "71 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "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": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 72, - "Text": "72 / 84Namespace: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" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 73, - "Text": "73 / 84Property 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", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 74, - "Text": "74 / 84Tool name.Type ParametersToolIt's a class type.", - "Links": [] - }, - { - "Number": 75, - "Text": "75 / 84Namespace: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", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Coordinates": { - "Left": 28, - "Top": 90.499939 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Coordinates": { - "Left": 28, - "Top": 90.499939 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Coordinates": { - "Left": 28, - "Top": 425.75 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Coordinates": { - "Left": 28, - "Top": 425.75 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Coordinates": { - "Left": 28, - "Top": 584.75 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Coordinates": { - "Left": 28, - "Top": 584.75 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Coordinates": { - "Left": 28, - "Top": 214.24994 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Coordinates": { - "Left": 28, - "Top": 449.74994 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Coordinates": { - "Left": 28, - "Top": 449.74994 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - } - ] - }, - { - "Number": 76, - "Text": "76 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 77, - "Text": "77 / 84Extension 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 78, - "Text": "78 / 84Namespace: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": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 79, - "Text": "79 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 80, - "Text": "80 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 81, - "Text": "81 / 84ReturnsComplexComplex 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 60, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 60, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 82, - "Text": "82 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Coordinates": { - "Left": 28, - "Top": 332.75 - } - } - } - ] - }, - { - "Number": 83, - "Text": "83 / 84EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", - "Links": [ - { - "Goto": { - "PageNumber": 84, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 84, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 84, - "Text": "84 / 84Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Goto": { - "PageNumber": 83, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - } - ], - "Bookmarks": [ - { - "Title": "BuildFromAssembly", - "Children": [ - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue5432", - "Children": [], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromCSharpSourceCode", - "Children": [ - { - "Title": "CSharp", - "Children": [], - "Destination": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromProject", - "Children": [ - { - "Title": "Issue8540", - "Children": [ - { - "Title": "A", - "Children": [ - { - "Title": "A", - "Children": [], - "Destination": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "B", - "Children": [ - { - "Title": "B", - "Children": [], - "Destination": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.IIssue8948", - "Children": [], - "Destination": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8665", - "Children": [], - "Destination": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8696Attribute", - "Children": [], - "Destination": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8948", - "Children": [], - "Destination": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue9260", - "Children": [], - "Destination": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Test", - "Children": [], - "Destination": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Dog", - "Children": [], - "Destination": { - "PageNumber": 29, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "IInheritdoc", - "Children": [], - "Destination": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc", - "Children": [], - "Destination": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366", - "Children": [], - "Destination": { - "PageNumber": 34, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366.Class1", - "Children": [], - "Destination": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366.Class2", - "Children": [], - "Destination": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue7035", - "Children": [], - "Destination": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue7484", - "Children": [], - "Destination": { - "PageNumber": 39, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue8101", - "Children": [], - "Destination": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue8129", - "Children": [], - "Destination": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue8725", - "Children": [], - "Destination": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromVBSourceCode", - "Children": [ - { - "Title": "BaseClass1", - "Children": [], - "Destination": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "CatLibrary", - "Children": [ - { - "Title": "Core", - "Children": [ - { - "Title": "ContainersRefType", - "Children": [], - "Destination": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ColorType", - "Children": [], - "Destination": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeChild", - "Children": [], - "Destination": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeChildInterface", - "Children": [], - "Destination": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeDelegate", - "Children": [], - "Destination": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ExplicitLayoutClass", - "Children": [], - "Destination": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue231", - "Children": [], - "Destination": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "CatException", - "Children": [], - "Destination": { - "PageNumber": 60, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Cat", - "Children": [], - "Destination": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Complex", - "Children": [], - "Destination": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "FakeDelegate", - "Children": [], - "Destination": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "IAnimal", - "Children": [], - "Destination": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ICat", - "Children": [], - "Destination": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ICatExtension", - "Children": [], - "Destination": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRefDelegate", - "Children": [], - "Destination": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRefNormalDelegate", - "Children": [], - "Destination": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Tom", - "Children": [], - "Destination": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "TomFromBaseClass", - "Children": [], - "Destination": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRef.Demo.Enumeration", - "Children": [ - { - "Title": "ColorType", - "Children": [], - "Destination": { - "PageNumber": 84, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 83, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.verified.json deleted file mode 100644 index ef5b52a1ebf..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/toc.verified.json +++ /dev/null @@ -1,352 +0,0 @@ -{ - "order": 100, - "items": [ - { - "name": "BuildFromAssembly", - "href": "BuildFromAssembly.html", - "topicHref": "BuildFromAssembly.html", - "topicUid": "BuildFromAssembly", - "items": [ - { - "name": "Class1", - "href": "BuildFromAssembly.Class1.html", - "topicHref": "BuildFromAssembly.Class1.html", - "topicUid": "BuildFromAssembly.Class1" - }, - { - "name": "Issue5432", - "href": "BuildFromAssembly.Issue5432.html", - "topicHref": "BuildFromAssembly.Issue5432.html", - "topicUid": "BuildFromAssembly.Issue5432" - } - ] - }, - { - "name": "BuildFromCSharpSourceCode", - "href": "BuildFromCSharpSourceCode.html", - "topicHref": "BuildFromCSharpSourceCode.html", - "topicUid": "BuildFromCSharpSourceCode", - "items": [ - { - "name": "CSharp", - "href": "BuildFromCSharpSourceCode.CSharp.html", - "topicHref": "BuildFromCSharpSourceCode.CSharp.html", - "topicUid": "BuildFromCSharpSourceCode.CSharp" - } - ] - }, - { - "name": "BuildFromProject", - "href": "BuildFromProject.html", - "topicHref": "BuildFromProject.html", - "topicUid": "BuildFromProject", - "items": [ - { - "name": "Issue8540", - "href": "BuildFromProject.Issue8540.html", - "topicHref": "BuildFromProject.Issue8540.html", - "topicUid": "BuildFromProject.Issue8540", - "items": [ - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.html", - "topicHref": "BuildFromProject.Issue8540.A.html", - "topicUid": "BuildFromProject.Issue8540.A", - "items": [ - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.A.html", - "topicHref": "BuildFromProject.Issue8540.A.A.html", - "topicUid": "BuildFromProject.Issue8540.A.A" - } - ] - }, - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.html", - "topicHref": "BuildFromProject.Issue8540.B.html", - "topicUid": "BuildFromProject.Issue8540.B", - "items": [ - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.B.html", - "topicHref": "BuildFromProject.Issue8540.B.B.html", - "topicUid": "BuildFromProject.Issue8540.B.B" - } - ] - } - ] - }, - { - "name": "Class1", - "href": "BuildFromProject.Class1.html", - "topicHref": "BuildFromProject.Class1.html", - "topicUid": "BuildFromProject.Class1" - }, - { - "name": "Class1.IIssue8948", - "href": "BuildFromProject.Class1.IIssue8948.html", - "topicHref": "BuildFromProject.Class1.IIssue8948.html", - "topicUid": "BuildFromProject.Class1.IIssue8948" - }, - { - "name": "Class1.Issue8665", - "href": "BuildFromProject.Class1.Issue8665.html", - "topicHref": "BuildFromProject.Class1.Issue8665.html", - "topicUid": "BuildFromProject.Class1.Issue8665" - }, - { - "name": "Class1.Issue8696Attribute", - "href": "BuildFromProject.Class1.Issue8696Attribute.html", - "topicHref": "BuildFromProject.Class1.Issue8696Attribute.html", - "topicUid": "BuildFromProject.Class1.Issue8696Attribute" - }, - { - "name": "Class1.Issue8948", - "href": "BuildFromProject.Class1.Issue8948.html", - "topicHref": "BuildFromProject.Class1.Issue8948.html", - "topicUid": "BuildFromProject.Class1.Issue8948" - }, - { - "name": "Class1.Issue9260", - "href": "BuildFromProject.Class1.Issue9260.html", - "topicHref": "BuildFromProject.Class1.Issue9260.html", - "topicUid": "BuildFromProject.Class1.Issue9260" - }, - { - "name": "Class1.Test", - "href": "BuildFromProject.Class1.Test-1.html", - "topicHref": "BuildFromProject.Class1.Test-1.html", - "topicUid": "BuildFromProject.Class1.Test`1" - }, - { - "name": "Dog", - "href": "BuildFromProject.Dog.html", - "topicHref": "BuildFromProject.Dog.html", - "topicUid": "BuildFromProject.Dog" - }, - { - "name": "IInheritdoc", - "href": "BuildFromProject.IInheritdoc.html", - "topicHref": "BuildFromProject.IInheritdoc.html", - "topicUid": "BuildFromProject.IInheritdoc" - }, - { - "name": "Inheritdoc", - "href": "BuildFromProject.Inheritdoc.html", - "topicHref": "BuildFromProject.Inheritdoc.html", - "topicUid": "BuildFromProject.Inheritdoc" - }, - { - "name": "Inheritdoc.Issue6366", - "href": "BuildFromProject.Inheritdoc.Issue6366.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366" - }, - { - "name": "Inheritdoc.Issue6366.Class1", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366.Class1`1" - }, - { - "name": "Inheritdoc.Issue6366.Class2", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366.Class2" - }, - { - "name": "Inheritdoc.Issue7035", - "href": "BuildFromProject.Inheritdoc.Issue7035.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7035.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue7035" - }, - { - "name": "Inheritdoc.Issue7484", - "href": "BuildFromProject.Inheritdoc.Issue7484.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7484.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue7484" - }, - { - "name": "Inheritdoc.Issue8101", - "href": "BuildFromProject.Inheritdoc.Issue8101.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8101.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue8101" - }, - { - "name": "Inheritdoc.Issue8129", - "href": "BuildFromProject.Inheritdoc.Issue8129.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8129.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue8129" - }, - { - "name": "Issue8725", - "href": "BuildFromProject.Issue8725.html", - "topicHref": "BuildFromProject.Issue8725.html", - "topicUid": "BuildFromProject.Issue8725" - } - ] - }, - { - "name": "BuildFromVBSourceCode", - "href": "BuildFromVBSourceCode.html", - "topicHref": "BuildFromVBSourceCode.html", - "topicUid": "BuildFromVBSourceCode", - "items": [ - { - "name": "BaseClass1", - "href": "BuildFromVBSourceCode.BaseClass1.html", - "topicHref": "BuildFromVBSourceCode.BaseClass1.html", - "topicUid": "BuildFromVBSourceCode.BaseClass1" - }, - { - "name": "Class1", - "href": "BuildFromVBSourceCode.Class1.html", - "topicHref": "BuildFromVBSourceCode.Class1.html", - "topicUid": "BuildFromVBSourceCode.Class1" - } - ] - }, - { - "name": "CatLibrary", - "href": "CatLibrary.html", - "topicHref": "CatLibrary.html", - "topicUid": "CatLibrary", - "items": [ - { - "name": "Core", - "href": "CatLibrary.Core.html", - "topicHref": "CatLibrary.Core.html", - "topicUid": "CatLibrary.Core", - "items": [ - { - "name": "ContainersRefType", - "href": "CatLibrary.Core.ContainersRefType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.html", - "topicUid": "CatLibrary.Core.ContainersRefType" - }, - { - "name": "ContainersRefType.ColorType", - "href": "CatLibrary.Core.ContainersRefType.ColorType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ColorType.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ColorType" - }, - { - "name": "ContainersRefType.ContainersRefTypeChild", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild" - }, - { - "name": "ContainersRefType.ContainersRefTypeChildInterface", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface" - }, - { - "name": "ContainersRefType.ContainersRefTypeDelegate", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate" - }, - { - "name": "ExplicitLayoutClass", - "href": "CatLibrary.Core.ExplicitLayoutClass.html", - "topicHref": "CatLibrary.Core.ExplicitLayoutClass.html", - "topicUid": "CatLibrary.Core.ExplicitLayoutClass" - }, - { - "name": "Issue231", - "href": "CatLibrary.Core.Issue231.html", - "topicHref": "CatLibrary.Core.Issue231.html", - "topicUid": "CatLibrary.Core.Issue231" - } - ] - }, - { - "name": "CatException", - "href": "CatLibrary.CatException-1.html", - "topicHref": "CatLibrary.CatException-1.html", - "topicUid": "CatLibrary.CatException`1" - }, - { - "name": "Cat", - "href": "CatLibrary.Cat-2.html", - "topicHref": "CatLibrary.Cat-2.html", - "topicUid": "CatLibrary.Cat`2" - }, - { - "name": "Complex", - "href": "CatLibrary.Complex-2.html", - "topicHref": "CatLibrary.Complex-2.html", - "topicUid": "CatLibrary.Complex`2" - }, - { - "name": "FakeDelegate", - "href": "CatLibrary.FakeDelegate-1.html", - "topicHref": "CatLibrary.FakeDelegate-1.html", - "topicUid": "CatLibrary.FakeDelegate`1" - }, - { - "name": "IAnimal", - "href": "CatLibrary.IAnimal.html", - "topicHref": "CatLibrary.IAnimal.html", - "topicUid": "CatLibrary.IAnimal" - }, - { - "name": "ICat", - "href": "CatLibrary.ICat.html", - "topicHref": "CatLibrary.ICat.html", - "topicUid": "CatLibrary.ICat" - }, - { - "name": "ICatExtension", - "href": "CatLibrary.ICatExtension.html", - "topicHref": "CatLibrary.ICatExtension.html", - "topicUid": "CatLibrary.ICatExtension" - }, - { - "name": "MRefDelegate", - "href": "CatLibrary.MRefDelegate-3.html", - "topicHref": "CatLibrary.MRefDelegate-3.html", - "topicUid": "CatLibrary.MRefDelegate`3" - }, - { - "name": "MRefNormalDelegate", - "href": "CatLibrary.MRefNormalDelegate.html", - "topicHref": "CatLibrary.MRefNormalDelegate.html", - "topicUid": "CatLibrary.MRefNormalDelegate" - }, - { - "name": "Tom", - "href": "CatLibrary.Tom.html", - "topicHref": "CatLibrary.Tom.html", - "topicUid": "CatLibrary.Tom" - }, - { - "name": "TomFromBaseClass", - "href": "CatLibrary.TomFromBaseClass.html", - "topicHref": "CatLibrary.TomFromBaseClass.html", - "topicUid": "CatLibrary.TomFromBaseClass" - } - ] - }, - { - "name": "MRef.Demo.Enumeration", - "href": "MRef.Demo.Enumeration.html", - "topicHref": "MRef.Demo.Enumeration.html", - "topicUid": "MRef.Demo.Enumeration", - "items": [ - { - "name": "ColorType", - "href": "MRef.Demo.Enumeration.ColorType.html", - "topicHref": "MRef.Demo.Enumeration.ColorType.html", - "topicUid": "MRef.Demo.Enumeration.ColorType" - } - ] - } - ], - "memberLayout": "SamePage", - "pdf": true, - "pdfTocPage": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromAssembly.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromAssembly.Class1.html.view.verified.json deleted file mode 100644 index 1638a8311e9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromAssembly.Class1.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromAssembly.Class1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromAssembly.Class1.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromAssembly.Issue5432.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromAssembly.Issue5432.html.view.verified.json deleted file mode 100644 index 6ff809da798..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromAssembly.Issue5432.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Struct Issue5432", - "content": "

    Struct Issue5432

    \r\n
    \r\n
    Namespace
    BuildFromAssembly
    Assembly
    BuildFromAssembly.dll
    \r\n
    public struct Issue5432

    Inherited Members

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

    Properties

    Name

    \r\n
    public string Name { get; }

    Property Value

    string
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromAssembly.Issue5432.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromAssembly.Issue5432.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromAssembly.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromAssembly.html.view.verified.json deleted file mode 100644 index 251a35176fd..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromAssembly.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace BuildFromAssembly", - "content": "

    Namespace BuildFromAssembly

    \r\n

    Classes

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

    This is a test class.

    \n\r\n

    Structs

    Issue5432
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromAssembly.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromAssembly.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromCSharpSourceCode.CSharp.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromCSharpSourceCode.CSharp.html.view.verified.json deleted file mode 100644 index 6b85952156f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromCSharpSourceCode.CSharp.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class CSharp", - "content": "

    Class CSharp

    \r\n
    \r\n
    Namespace
    BuildFromCSharpSourceCode
    \r\n
    public class CSharp

    Inheritance

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

    Inherited Members

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

    Methods

    Main(string[])

    \r\n
    public static void Main(string[] args)

    Parameters

    args string[]
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromCSharpSourceCode.CSharp.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromCSharpSourceCode.CSharp.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromCSharpSourceCode.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromCSharpSourceCode.html.view.verified.json deleted file mode 100644 index 2855ac1142b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromCSharpSourceCode.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace BuildFromCSharpSourceCode", - "content": "

    Namespace BuildFromCSharpSourceCode

    \r\n

    Classes

    CSharp
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromCSharpSourceCode.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromCSharpSourceCode.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.IIssue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.IIssue8948.html.view.verified.json deleted file mode 100644 index 3fc547f7aa0..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.IIssue8948.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Interface Class1.IIssue8948", - "content": "

    Interface Class1.IIssue8948 Preview

    \r\n \n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public interface Class1.IIssue8948

    Methods

    DoNothing<T>()

    \r\n

    Does nothing with generic type T.

    \n
    void DoNothing<T>()

    Type Parameters

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

    A generic type.

    \n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Class1.IIssue8948.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Class1.IIssue8948.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8665.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8665.html.view.verified.json deleted file mode 100644 index e3aec5dffad..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8665.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Class1.Issue8665", - "content": "

    Class Class1.Issue8665 Preview

    \r\n \n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public class Class1.Issue8665

    Inheritance

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

    Inherited Members

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

    Constructors

    Issue8665()

    \r\n
    public Issue8665()

    Issue8665(int)

    \r\n
    public Issue8665(int foo)

    Parameters

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

    Issue8665(int, char)

    \r\n
    public Issue8665(int foo, char bar)

    Parameters

    foo int
    \r\n
    \r\n\r\n\r\n\r\n
    bar char
    \r\n
    \r\n\r\n\r\n\r\n

    Issue8665(int, char, string)

    \r\n
    public Issue8665(int foo, char bar, string baz)

    Parameters

    foo int
    \r\n
    \r\n\r\n\r\n\r\n
    bar char
    \r\n
    \r\n\r\n\r\n\r\n
    baz string
    \r\n
    \r\n\r\n\r\n\r\n

    Properties

    Bar

    \r\n
    public char Bar { get; }

    Property Value

    char
    \r\n
    \r\n\r\n\r\n\r\n

    Baz

    \r\n
    public string Baz { get; }

    Property Value

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

    Foo

    \r\n
    public int Foo { get; }

    Property Value

    int
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Class1.Issue8665.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Class1.Issue8665.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json deleted file mode 100644 index e021e3bf288..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Class1.Issue8696Attribute", - "content": "

    Class Class1.Issue8696Attribute Preview

    \r\n \n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public class Class1.Issue8696Attribute : Attribute

    Inheritance

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

    Inherited Members

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

    Constructors

    Issue8696Attribute(string?, int, int, string[]?, bool, Type?)

    \r\n
    [Class1.Issue8696("Changes the name of the server in the server list", 0, 0, null, false, null)]\npublic Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)

    Parameters

    description string?
    \r\n
    \r\n\r\n\r\n\r\n
    boundsMin int
    \r\n
    \r\n\r\n\r\n\r\n
    boundsMax int
    \r\n
    \r\n\r\n\r\n\r\n
    validGameModes string[]?
    \r\n
    \r\n\r\n\r\n\r\n
    hasMultipleSelections bool
    \r\n
    \r\n\r\n\r\n\r\n
    enumType Type?
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Class1.Issue8696Attribute.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Class1.Issue8696Attribute.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8948.html.view.verified.json deleted file mode 100644 index d1bcfc41366..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8948.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Class1.Issue8948", - "content": "

    Class Class1.Issue8948 Preview

    \r\n \n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public class Class1.Issue8948 : Class1.IIssue8948

    Inheritance

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

    Implements

    \r\n\n\r\n

    Inherited Members

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

    Methods

    DoNothing<T>()

    \r\n

    Does nothing with generic type T.

    \n
    public void DoNothing<T>()

    Type Parameters

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

    A generic type.

    \n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Class1.Issue8948.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Class1.Issue8948.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue9260.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue9260.html.view.verified.json deleted file mode 100644 index 4a5b79bf3c8..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue9260.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Enum Class1.Issue9260", - "content": "

    Enum Class1.Issue9260 Preview

    \r\n \n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public enum Class1.Issue9260

    Fields

    Value = 0
    \r\n
    \r\n\r\n\r\n

    This is a regular enum value.

    \n

    This is a remarks section. Very important remarks about Value go here.

    \n\r\n
    OldAndUnusedValue = 1 Deprecated
    \r\n
    \r\n\r\n\r\n

    This is old and unused. You shouldn't use it anymore.

    \n

    Don't use this, seriously! Use Value instead.

    \n\r\n
    OldAndUnusedValue2 = 2 Deprecated
    \r\n
    \r\n\n\r\n\r\n

    This is old and unused. You shouldn't use it anymore.

    \n

    Don't use this, seriously! Use Value instead.

    \n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Class1.Issue9260.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Class1.Issue9260.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Test-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Test-1.html.view.verified.json deleted file mode 100644 index 1aeaf4df30c..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Test-1.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Class1.Test", - "content": "

    Class Class1.Test<T> Preview

    \r\n \n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public class Class1.Test<T>

    Type Parameters

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

    Inheritance

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

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Class1.Test-1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Class1.Test-1.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.html.view.verified.json deleted file mode 100644 index 976bb4547dd..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Class1", - "content": "

    Class Class1 Preview

    \r\n \n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public class Class1 : IClass1

    Inheritance

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

    Implements

    \r\n
    \nIClass1\n
    \n\r\n

    Inherited Members

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

    Methods

    Issue1651()

    \r\n

    Pricing models are used to calculate theoretical option values

    \n
    • 1Black Scholes
    • 2Black76
    • 3Black76Fut
    • 4Equity Tree
    • 5Variance Swap
    • 6Dividend Forecast
    \n
    public void Issue1651()

    Issue1887() Preview

    \r\n \n

    IConfiguration related helper and extension routines.

    \n
    public void Issue1887()

    Issue2623()

    \r\n
    public void Issue2623()

    Examples

    MyClass myClass = new MyClass();\n\nvoid Update()\n{\n    myClass.Execute();\n}\n
    \n

    Remarks

    For example:

    \n
    MyClass myClass = new MyClass();\n\nvoid Update()\n{\n    myClass.Execute();\n}\n
    \n

    Issue2723()

    \r\n
    public void Issue2723()

    Remarks

    \n
    Note
    \n

    This is a <note>. & " '

    \n
    \n

    Inline <angle brackets>.

    \n

    link

    \n
    for (var i = 0; i > 10; i++) // & " '\nvar range = new Range<int> { Min = 0, Max = 10 };\n
    \n
    var range = new Range<int> { Min = 0, Max = 10 };
    \n

    Issue4017()

    \r\n
    public void Issue4017()

    Examples

    public void HookMessageDeleted(BaseSocketClient client)\n{\n    client.MessageDeleted += HandleMessageDelete;\n}\n\npublic Task HandleMessageDelete(Cacheable<IMessage, ulong> cachedMessage, ISocketMessageChannel channel)\n{\n    // check if the message exists in cache; if not, we cannot report what was removed\n    if (!cachedMessage.HasValue) return;\n    var message = cachedMessage.Value;\n    Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\"\n        + Environment.NewLine\n        + message.Content);\n    return Task.CompletedTask;\n}
    \n

    Remarks

    void Update()\n{\n    myClass.Execute();\n}
    \n

    Issue4392()

    \r\n
    public void Issue4392()

    Remarks

    @"\\\\?\\"

    \n

    Issue7484()

    \r\n
    public void Issue7484()

    Remarks

    There's really no reason to not believe that this class can test things.

    \n
    TermDescription
    A TermA Description
    Bee TermBee Description
    \n

    Issue8764<T>()

    \r\n
    public void Issue8764<T>() where T : unmanaged

    Type Parameters

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

    Issue896()

    \r\n

    Test

    \n
    public void Issue896()

    See Also

    \r\n
    \nClass1.Test<T>\n
    \n
    \nClass1\n
    \n\r\n

    Issue9216()

    \r\n

    Calculates the determinant of a 3-dimensional matrix:

    \n

    \\(A = \\begin{vmatrix} a_{11} & a_{12} & a_{13} \\\\ a_{21} & a_{22} & a_{23} \\\\ a_{31} & a_{32} & a_{33} \\end{vmatrix}\\)

    \n

    Returns the smallest value:

    \n

    \\(\\left\\{\\begin{matrix}a, a<b \\\\ b, b>a\\\\ \\end{matrix} \\right.\\)

    \n
    public static double Issue9216()

    Returns

    double
    \r\n
    \r\n\r\n\r\n\r\n

    XmlCommentIncludeTag()

    \r\n

    This method should do something...

    \n
    public void XmlCommentIncludeTag()

    Remarks

    This is remarks.

    \n", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Class1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Class1.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Dog.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Dog.html.view.verified.json deleted file mode 100644 index 67c5c6817a7..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Dog.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "description": "Class representing a dog.", - "title": "Class Dog", - "content": "

    Class Dog

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

    Class representing a dog.

    \n
    public class Dog

    Inheritance

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

    Inherited Members

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

    Constructors

    Dog(string, int)

    \r\n

    Constructor.

    \n
    public Dog(string name, int age)

    Parameters

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

    Name of the dog.

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

    Age of the dog.

    \n\r\n

    Properties

    Age

    \r\n

    Age of the dog.

    \n
    public int Age { get; }

    Property Value

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

    Name

    \r\n

    Name of the dog.

    \n
    public string Name { get; }

    Property Value

    string
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Dog.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Dog.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.IInheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.IInheritdoc.html.view.verified.json deleted file mode 100644 index 798a7917eed..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.IInheritdoc.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Interface IInheritdoc", - "content": "

    Interface IInheritdoc

    \r\n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public interface IInheritdoc

    Methods

    Issue7629()

    \r\n

    This method should do something...

    \n
    void Issue7629()
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.IInheritdoc.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.IInheritdoc.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json deleted file mode 100644 index 81fe9ffbd24..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Inheritdoc.Issue6366.Class1", - "content": "

    Class Inheritdoc.Issue6366.Class1<T>

    \r\n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public abstract class Inheritdoc.Issue6366.Class1<T>

    Type Parameters

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

    Inheritance

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

    Inherited Members

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

    Methods

    TestMethod1(T, int)

    \r\n

    This text inherited.

    \n
    public abstract T TestMethod1(T parm1, int parm2)

    Parameters

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

    This text NOT inherited.

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

    This text inherited.

    \n\r\n

    Returns

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

    This text inherited.

    \n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json deleted file mode 100644 index ec9123af129..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Inheritdoc.Issue6366.Class2", - "content": "

    Class Inheritdoc.Issue6366.Class2

    \r\n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1<bool>

    Inheritance

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

    Inherited Members

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

    Methods

    TestMethod1(bool, int)

    \r\n

    This text inherited.

    \n
    public override bool TestMethod1(bool parm1, int parm2)

    Parameters

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

    This text NOT inherited.

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

    This text inherited.

    \n\r\n

    Returns

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

    This text inherited.

    \n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json deleted file mode 100644 index 28bace5119b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Inheritdoc.Issue6366", - "content": "

    Class Inheritdoc.Issue6366

    \r\n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public class Inheritdoc.Issue6366

    Inheritance

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

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue6366.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Inheritdoc.Issue6366.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json deleted file mode 100644 index 36feb4e4eaa..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Inheritdoc.Issue7035", - "content": "

    Class Inheritdoc.Issue7035

    \r\n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public class Inheritdoc.Issue7035

    Inheritance

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

    Inherited Members

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

    Methods

    A()

    \r\n
    public void A()

    B()

    \r\n
    public void B()
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue7035.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Inheritdoc.Issue7035.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json deleted file mode 100644 index 77cda1b8889..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue7484.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Inheritdoc.Issue7484.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json deleted file mode 100644 index 1115f3ebf59..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Inheritdoc.Issue8101", - "content": "

    Class Inheritdoc.Issue8101

    \r\n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public class Inheritdoc.Issue8101

    Inheritance

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

    Inherited Members

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

    Methods

    Tween(float, float, float, Action<float>)

    \r\n

    Create a new tween.

    \n
    public static object Tween(float from, float to, float duration, Action<float> onChange)

    Parameters

    from float
    \r\n
    \r\n\r\n\r\n

    The starting value.

    \n\r\n
    to float
    \r\n
    \r\n\r\n\r\n

    The end value.

    \n\r\n
    duration float
    \r\n
    \r\n\r\n\r\n

    Total tween duration in seconds.

    \n\r\n
    onChange Action<float>
    \r\n
    \r\n\r\n\r\n

    A callback that will be invoked every time the tween value changes.

    \n\r\n

    Returns

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

    The newly created tween instance.

    \n\r\n

    Tween(int, int, float, Action<int>)

    \r\n

    Create a new tween.

    \n
    public static object Tween(int from, int to, float duration, Action<int> onChange)

    Parameters

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

    The starting value.

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

    The end value.

    \n\r\n
    duration float
    \r\n
    \r\n\r\n\r\n

    Total tween duration in seconds.

    \n\r\n
    onChange Action<int>
    \r\n
    \r\n\r\n\r\n

    A callback that will be invoked every time the tween value changes.

    \n\r\n

    Returns

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

    The newly created tween instance.

    \n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue8101.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Inheritdoc.Issue8101.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json deleted file mode 100644 index 145948cbedd..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Struct Inheritdoc.Issue8129", - "content": "

    Struct Inheritdoc.Issue8129

    \r\n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public struct Inheritdoc.Issue8129

    Inherited Members

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

    Constructors

    Issue8129(string)

    \r\n
    public Issue8129(string foo)

    Parameters

    foo string
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue8129.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Inheritdoc.Issue8129.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.html.view.verified.json deleted file mode 100644 index eed28bf1d6d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Inheritdoc", - "content": "

    Class Inheritdoc

    \r\n
    \r\n
    Namespace
    BuildFromProject
    Assembly
    BuildFromProject.dll
    \r\n
    public class Inheritdoc : IInheritdoc, IDisposable

    Inheritance

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

    Implements

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

    Inherited Members

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

    Methods

    Dispose()

    \r\n

    Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

    \n
    public void Dispose()

    Issue7628()

    \r\n

    This method should do something...

    \n
    public void Issue7628()

    Issue7629()

    \r\n

    This method should do something...

    \n
    public void Issue7629()
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Inheritdoc.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Inheritdoc.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.A.A.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.A.A.html.view.verified.json deleted file mode 100644 index 7b0edf4cfa0..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.A.A.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class A", - "content": "

    Class A

    \r\n
    \r\n
    Namespace
    BuildFromProject.Issue8540.A
    Assembly
    BuildFromProject.dll
    \r\n
    public class A

    Inheritance

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

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Issue8540.A.A.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Issue8540.A.A.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.A.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.A.html.view.verified.json deleted file mode 100644 index e93c4b224e8..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.A.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace BuildFromProject.Issue8540.A", - "content": "

    Namespace BuildFromProject.Issue8540.A

    \r\n

    Classes

    A
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Issue8540.A.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Issue8540.A.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.B.B.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.B.B.html.view.verified.json deleted file mode 100644 index 5dab9c4d313..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.B.B.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class B", - "content": "

    Class B

    \r\n
    \r\n
    Namespace
    BuildFromProject.Issue8540.B
    Assembly
    BuildFromProject.dll
    \r\n
    public class B

    Inheritance

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

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Issue8540.B.B.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Issue8540.B.B.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.B.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.B.html.view.verified.json deleted file mode 100644 index 7a137d6f811..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.B.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace BuildFromProject.Issue8540.B", - "content": "

    Namespace BuildFromProject.Issue8540.B

    \r\n

    Classes

    B
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Issue8540.B.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Issue8540.B.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.html.view.verified.json deleted file mode 100644 index b1ec1392fb9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace BuildFromProject.Issue8540", - "content": "

    Namespace BuildFromProject.Issue8540

    \r\n

    Namespaces

    BuildFromProject.Issue8540.A
    \r\n
    \r\n\r\n\r\n\r\n
    BuildFromProject.Issue8540.B
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Issue8540.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Issue8540.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8725.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8725.html.view.verified.json deleted file mode 100644 index d9fe432c1e7..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8725.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.Issue8725.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.Issue8725.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.html.view.verified.json deleted file mode 100644 index 2c466f39f71..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace BuildFromProject", - "content": "

    Namespace BuildFromProject

    \r\n

    Namespaces

    BuildFromProject.Issue8540
    \r\n
    \r\n\r\n\r\n\r\n

    Classes

    Inheritdoc.Issue6366.Class1<T>
    \r\n
    \r\n\r\n\r\n\r\n
    Class1
    \r\n
    \r\n\r\n\r\n\r\n
    Inheritdoc.Issue6366.Class2
    \r\n
    \r\n\r\n\r\n\r\n
    Dog
    \r\n
    \r\n\r\n\r\n

    Class representing a dog.

    \n\r\n
    Inheritdoc
    \r\n
    \r\n\r\n\r\n\r\n
    Inheritdoc.Issue6366
    \r\n
    \r\n\r\n\r\n\r\n
    Inheritdoc.Issue7035
    \r\n
    \r\n\r\n\r\n\r\n
    Inheritdoc.Issue7484
    \r\n
    \r\n\r\n\r\n

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

    \n\r\n
    Inheritdoc.Issue8101
    \r\n
    \r\n\r\n\r\n\r\n
    Class1.Issue8665
    \r\n
    \r\n\r\n\r\n\r\n
    Class1.Issue8696Attribute
    \r\n
    \r\n\r\n\r\n\r\n
    Issue8725
    \r\n
    \r\n\r\n\r\n

    A nice class

    \n\r\n
    Class1.Issue8948
    \r\n
    \r\n\r\n\r\n\r\n
    Class1.Test<T>
    \r\n
    \r\n\r\n\r\n\r\n

    Structs

    Inheritdoc.Issue8129
    \r\n
    \r\n\r\n\r\n\r\n

    Interfaces

    IInheritdoc
    \r\n
    \r\n\r\n\r\n\r\n
    Class1.IIssue8948
    \r\n
    \r\n\r\n\r\n\r\n

    Enums

    Class1.Issue9260
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromProject.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromProject.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json deleted file mode 100644 index 9dae3ad092e..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromVBSourceCode.BaseClass1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromVBSourceCode.BaseClass1.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json deleted file mode 100644 index 4600c840897..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromVBSourceCode.Class1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromVBSourceCode.Class1.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.html.view.verified.json deleted file mode 100644 index f148a0555c7..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace BuildFromVBSourceCode", - "content": "

    Namespace BuildFromVBSourceCode

    \r\n

    Classes

    BaseClass1
    \r\n
    \r\n\r\n\r\n

    This is the BaseClass

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

    This is summary from vb class...

    \n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/BuildFromVBSourceCode.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/BuildFromVBSourceCode.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Cat-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Cat-2.html.view.verified.json deleted file mode 100644 index a4dd462ba0e..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Cat-2.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Cat-2.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Cat-2.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.CatException-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.CatException-1.html.view.verified.json deleted file mode 100644 index 9a53104878e..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.CatException-1.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class CatException", - "content": "

    Class CatException<T>

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n
    public class CatException<T> : Exception, ISerializable

    Type Parameters

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

    Inheritance

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

    Implements

    \r\n\n\r\n

    Inherited Members

    \r\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.CatException-1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.CatException-1.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Complex-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Complex-2.html.view.verified.json deleted file mode 100644 index 713e9957e2b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Complex-2.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Complex", - "content": "

    Class Complex<T, J>

    \r\n
    \r\n
    Namespace
    CatLibrary
    Assembly
    CatLibrary.dll
    \r\n
    public class Complex<T, J>

    Type Parameters

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

    Inheritance

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

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Complex-2.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Complex-2.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json deleted file mode 100644 index 2f51e0709d0..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Core.ContainersRefType.ColorType.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Core.ContainersRefType.ColorType.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json deleted file mode 100644 index 496fd9c5b4d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class ContainersRefType.ContainersRefTypeChild", - "content": "

    Class ContainersRefType.ContainersRefTypeChild

    \r\n
    \r\n
    Namespace
    CatLibrary.Core
    Assembly
    CatLibrary.Core.dll
    \r\n
    public class ContainersRefType.ContainersRefTypeChild

    Inheritance

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

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json deleted file mode 100644 index deca1c8a12e..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Interface ContainersRefType.ContainersRefTypeChildInterface", - "content": "

    Interface ContainersRefType.ContainersRefTypeChildInterface

    \r\n
    \r\n
    Namespace
    CatLibrary.Core
    Assembly
    CatLibrary.Core.dll
    \r\n
    public interface ContainersRefType.ContainersRefTypeChildInterface
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json deleted file mode 100644 index b82e68d0f90..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json deleted file mode 100644 index 21ea06b1a19..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Core.ContainersRefType.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Core.ContainersRefType.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json deleted file mode 100644 index 246cba18e09..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class ExplicitLayoutClass", - "content": "

    Class ExplicitLayoutClass

    \r\n
    \r\n
    Namespace
    CatLibrary.Core
    Assembly
    CatLibrary.Core.dll
    \r\n
    public class ExplicitLayoutClass

    Inheritance

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

    Inherited Members

    \r\n\n\n\n\n\n\n\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Core.ExplicitLayoutClass.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Core.ExplicitLayoutClass.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.Issue231.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.Issue231.html.view.verified.json deleted file mode 100644 index 79395d1d9f6..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.Issue231.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Class Issue231", - "content": "

    Class Issue231

    \r\n
    \r\n
    Namespace
    CatLibrary.Core
    Assembly
    CatLibrary.dll, CatLibrary.Core.dll
    \r\n
    public static class Issue231

    Inheritance

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

    Inherited Members

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

    Methods

    Bar(ContainersRefType)

    \r\n
    public static void Bar(this ContainersRefType c)

    Parameters

    c ContainersRefType
    \r\n
    \r\n\r\n\r\n\r\n

    Foo(ContainersRefType)

    \r\n
    public static void Foo(this ContainersRefType c)

    Parameters

    c ContainersRefType
    \r\n
    \r\n\r\n\r\n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Core.Issue231.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Core.Issue231.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.html.view.verified.json deleted file mode 100644 index bbbc3e76206..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace CatLibrary.Core", - "content": "

    Namespace CatLibrary.Core

    \r\n

    Classes

    ContainersRefType.ContainersRefTypeChild
    \r\n
    \r\n\r\n\r\n\r\n
    ExplicitLayoutClass
    \r\n
    \r\n\r\n\r\n\r\n
    Issue231
    \r\n
    \r\n\r\n\r\n\r\n
    Issue231
    \r\n
    \r\n\r\n\r\n\r\n

    Structs

    ContainersRefType
    \r\n
    \r\n\r\n\r\n

    Struct ContainersRefType

    \n\r\n

    Interfaces

    ContainersRefType.ContainersRefTypeChildInterface
    \r\n
    \r\n\r\n\r\n\r\n

    Enums

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

    Enumeration ColorType

    \n\r\n

    Delegates

    ContainersRefType.ContainersRefTypeDelegate
    \r\n
    \r\n\r\n\r\n

    Delegate ContainersRefTypeDelegate

    \n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Core.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Core.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json deleted file mode 100644 index 35f9d5ce90d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.FakeDelegate-1.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.FakeDelegate-1.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.IAnimal.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.IAnimal.html.view.verified.json deleted file mode 100644 index 12c9defc6bd..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.IAnimal.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.IAnimal.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.IAnimal.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICat.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICat.html.view.verified.json deleted file mode 100644 index feacccb5a75..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICat.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.ICat.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.ICat.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICatExtension.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICatExtension.html.view.verified.json deleted file mode 100644 index d3b7872bdda..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICatExtension.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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.Also 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.

    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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.ICatExtension.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.ICatExtension.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json deleted file mode 100644 index 7ee78bd3e0f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.MRefDelegate-3.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.MRefDelegate-3.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json deleted file mode 100644 index 117d5f5f469..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.MRefNormalDelegate.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.MRefNormalDelegate.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Tom.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Tom.html.view.verified.json deleted file mode 100644 index 95f36910b97..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Tom.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.Tom.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.Tom.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json deleted file mode 100644 index 671b478aee2..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.TomFromBaseClass.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.TomFromBaseClass.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.html.view.verified.json deleted file mode 100644 index ea4ba3fcd50..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace CatLibrary", - "content": "

    Namespace CatLibrary

    \r\n

    Namespaces

    CatLibrary.Core
    \r\n
    \r\n\r\n\r\n\r\n

    Classes

    Cat<T, K>
    \r\n
    \r\n\r\n\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\r\n
    CatException<T>
    \r\n
    \r\n\r\n\r\n\r\n
    Complex<T, J>
    \r\n
    \r\n\r\n\r\n\r\n
    ICatExtension
    \r\n
    \r\n\r\n\r\n

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

    \n

    This class must be public and static.

    Also it shouldn't be a geneic class

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

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

    \n\r\n
    TomFromBaseClass
    \r\n
    \r\n\r\n\r\n

    TomFromBaseClass inherits from @

    \n\r\n

    Interfaces

    IAnimal
    \r\n
    \r\n\r\n\r\n

    This is basic interface of all animal.

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

    Cat's interface

    \n\r\n

    Delegates

    FakeDelegate<T>
    \r\n
    \r\n\r\n\r\n

    Fake delegate

    \n\r\n
    MRefDelegate<K, T, L>
    \r\n
    \r\n\r\n\r\n

    Generic delegate with many constrains.

    \n\r\n
    MRefNormalDelegate
    \r\n
    \r\n\r\n\r\n

    Delegate in the namespace

    \n\r\n
    ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/CatLibrary.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/CatLibrary.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json deleted file mode 100644 index dc7ad0f8932..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_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", - "_disableNextArticle": true, - "_key": "obj/apipage/MRef.Demo.Enumeration.ColorType.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/MRef.Demo.Enumeration.ColorType.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.Enumeration.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.Enumeration.html.view.verified.json deleted file mode 100644 index aa2356d9df2..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.Enumeration.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace MRef.Demo.Enumeration", - "content": "

      Namespace MRef.Demo.Enumeration

      \r\n

      Enums

      ColorType
      \r\n
      \r\n\r\n\r\n

      Enumeration ColorType

      \n\r\n
      ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/MRef.Demo.Enumeration.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/MRef.Demo.Enumeration.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.html.view.verified.json deleted file mode 100644 index 709b4fba407..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace MRef.Demo", - "content": "

      Namespace MRef.Demo

      \r\n

      Namespaces

      MRef.Demo.Enumeration
      \r\n
      \r\n\r\n\r\n\r\n
      ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/MRef.Demo.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/MRef.Demo.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.html.view.verified.json deleted file mode 100644 index 100009bf4df..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.html.view.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "title": "Namespace MRef", - "content": "

      Namespace MRef

      \r\n

      Namespaces

      MRef.Demo
      \r\n
      \r\n\r\n\r\n\r\n
      ", - "yamlmime": "ApiPage", - "_disableNextArticle": true, - "_key": "obj/apipage/MRef.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/MRef.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.html.view.verified.json deleted file mode 100644 index 355a80d75e9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.html.view.verified.json +++ /dev/null @@ -1,681 +0,0 @@ -{ - "items": [ - { - "name": "BuildFromAssembly", - "href": "BuildFromAssembly.html", - "topicHref": "BuildFromAssembly.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1", - "href": "BuildFromAssembly.Class1.html", - "topicHref": "BuildFromAssembly.Class1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Structs", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Issue5432", - "href": "BuildFromAssembly.Issue5432.html", - "topicHref": "BuildFromAssembly.Issue5432.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "BuildFromCSharpSourceCode", - "href": "BuildFromCSharpSourceCode.html", - "topicHref": "BuildFromCSharpSourceCode.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "CSharp", - "href": "BuildFromCSharpSourceCode.CSharp.html", - "topicHref": "BuildFromCSharpSourceCode.CSharp.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "BuildFromProject", - "href": "BuildFromProject.html", - "topicHref": "BuildFromProject.html", - "items": [ - { - "name": "Issue8540", - "href": "BuildFromProject.Issue8540.html", - "topicHref": "BuildFromProject.Issue8540.html", - "items": [ - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.html", - "topicHref": "BuildFromProject.Issue8540.A.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.A.html", - "topicHref": "BuildFromProject.Issue8540.A.A.html", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 4.0 - }, - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.html", - "topicHref": "BuildFromProject.Issue8540.B.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.B.html", - "topicHref": "BuildFromProject.Issue8540.B.B.html", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 4.0 - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1", - "href": "BuildFromProject.Class1.html", - "topicHref": "BuildFromProject.Class1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8665", - "href": "BuildFromProject.Class1.Issue8665.html", - "topicHref": "BuildFromProject.Class1.Issue8665.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8696Attribute", - "href": "BuildFromProject.Class1.Issue8696Attribute.html", - "topicHref": "BuildFromProject.Class1.Issue8696Attribute.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8948", - "href": "BuildFromProject.Class1.Issue8948.html", - "topicHref": "BuildFromProject.Class1.Issue8948.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Test", - "href": "BuildFromProject.Class1.Test-1.html", - "topicHref": "BuildFromProject.Class1.Test-1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Dog", - "href": "BuildFromProject.Dog.html", - "topicHref": "BuildFromProject.Dog.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc", - "href": "BuildFromProject.Inheritdoc.html", - "topicHref": "BuildFromProject.Inheritdoc.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366", - "href": "BuildFromProject.Inheritdoc.Issue6366.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366.Class1", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366.Class2", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue7035", - "href": "BuildFromProject.Inheritdoc.Issue7035.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7035.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue7484", - "href": "BuildFromProject.Inheritdoc.Issue7484.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7484.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue8101", - "href": "BuildFromProject.Inheritdoc.Issue8101.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8101.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Issue8725", - "href": "BuildFromProject.Issue8725.html", - "topicHref": "BuildFromProject.Issue8725.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Structs", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue8129", - "href": "BuildFromProject.Inheritdoc.Issue8129.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8129.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Interfaces", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.IIssue8948", - "href": "BuildFromProject.Class1.IIssue8948.html", - "topicHref": "BuildFromProject.Class1.IIssue8948.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "IInheritdoc", - "href": "BuildFromProject.IInheritdoc.html", - "topicHref": "BuildFromProject.IInheritdoc.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Enums", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue9260", - "href": "BuildFromProject.Class1.Issue9260.html", - "topicHref": "BuildFromProject.Class1.Issue9260.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "BuildFromVBSourceCode", - "href": "BuildFromVBSourceCode.html", - "topicHref": "BuildFromVBSourceCode.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "BaseClass1", - "href": "BuildFromVBSourceCode.BaseClass1.html", - "topicHref": "BuildFromVBSourceCode.BaseClass1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1", - "href": "BuildFromVBSourceCode.Class1.html", - "topicHref": "BuildFromVBSourceCode.Class1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "CatLibrary", - "href": "CatLibrary.html", - "topicHref": "CatLibrary.html", - "items": [ - { - "name": "Core", - "href": "CatLibrary.Core.html", - "topicHref": "CatLibrary.Core.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeChild", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ExplicitLayoutClass", - "href": "CatLibrary.Core.ExplicitLayoutClass.html", - "topicHref": "CatLibrary.Core.ExplicitLayoutClass.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Issue231", - "href": "CatLibrary.Core.Issue231.html", - "topicHref": "CatLibrary.Core.Issue231.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Structs", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType", - "href": "CatLibrary.Core.ContainersRefType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Interfaces", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeChildInterface", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Enums", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ColorType", - "href": "CatLibrary.Core.ContainersRefType.ColorType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ColorType.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Delegates", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeDelegate", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Cat", - "href": "CatLibrary.Cat-2.html", - "topicHref": "CatLibrary.Cat-2.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "CatException", - "href": "CatLibrary.CatException-1.html", - "topicHref": "CatLibrary.CatException-1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Complex", - "href": "CatLibrary.Complex-2.html", - "topicHref": "CatLibrary.Complex-2.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "ICatExtension", - "href": "CatLibrary.ICatExtension.html", - "topicHref": "CatLibrary.ICatExtension.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Tom", - "href": "CatLibrary.Tom.html", - "topicHref": "CatLibrary.Tom.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "TomFromBaseClass", - "href": "CatLibrary.TomFromBaseClass.html", - "topicHref": "CatLibrary.TomFromBaseClass.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Interfaces", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "IAnimal", - "href": "CatLibrary.IAnimal.html", - "topicHref": "CatLibrary.IAnimal.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "ICat", - "href": "CatLibrary.ICat.html", - "topicHref": "CatLibrary.ICat.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Delegates", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "FakeDelegate", - "href": "CatLibrary.FakeDelegate-1.html", - "topicHref": "CatLibrary.FakeDelegate-1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "MRefDelegate", - "href": "CatLibrary.MRefDelegate-3.html", - "topicHref": "CatLibrary.MRefDelegate-3.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "MRefNormalDelegate", - "href": "CatLibrary.MRefNormalDelegate.html", - "topicHref": "CatLibrary.MRefNormalDelegate.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "MRef", - "href": "MRef.html", - "topicHref": "MRef.html", - "items": [ - { - "name": "Demo", - "href": "MRef.Demo.html", - "topicHref": "MRef.Demo.html", - "items": [ - { - "name": "Enumeration", - "href": "MRef.Demo.Enumeration.html", - "topicHref": "MRef.Demo.Enumeration.html", - "items": [ - { - "name": "Enums", - "topicHref": null, - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "ColorType", - "href": "MRef.Demo.Enumeration.ColorType.html", - "topicHref": "MRef.Demo.Enumeration.ColorType.html", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 4.0 - } - ], - "tocHref": null, - "level": 3.0 - } - ], - "tocHref": null, - "level": 2.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/apipage/toc.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "apipage/toc.html", - "_rel": "../", - "_tocKey": "~/obj/apipage/toc.yml", - "_tocPath": "apipage/toc.html", - "_tocRel": "toc.html", - "topicHref": null, - "tocHref": null, - "name": null, - "level": 1.0, - "leaf": false, - "title": "Table of Content", - "_disableToc": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.json.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.json.view.verified.json deleted file mode 100644 index 769ecbab285..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.json.view.verified.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "content": "{\"items\":[{\"name\":\"BuildFromAssembly\",\"href\":\"BuildFromAssembly.html\",\"topicHref\":\"BuildFromAssembly.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"Class1\",\"href\":\"BuildFromAssembly.Class1.html\",\"topicHref\":\"BuildFromAssembly.Class1.html\"},{\"name\":\"Structs\"},{\"name\":\"Issue5432\",\"href\":\"BuildFromAssembly.Issue5432.html\",\"topicHref\":\"BuildFromAssembly.Issue5432.html\"}]},{\"name\":\"BuildFromCSharpSourceCode\",\"href\":\"BuildFromCSharpSourceCode.html\",\"topicHref\":\"BuildFromCSharpSourceCode.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"CSharp\",\"href\":\"BuildFromCSharpSourceCode.CSharp.html\",\"topicHref\":\"BuildFromCSharpSourceCode.CSharp.html\"}]},{\"name\":\"BuildFromProject\",\"href\":\"BuildFromProject.html\",\"topicHref\":\"BuildFromProject.html\",\"items\":[{\"name\":\"Issue8540\",\"href\":\"BuildFromProject.Issue8540.html\",\"topicHref\":\"BuildFromProject.Issue8540.html\",\"items\":[{\"name\":\"A\",\"href\":\"BuildFromProject.Issue8540.A.html\",\"topicHref\":\"BuildFromProject.Issue8540.A.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"A\",\"href\":\"BuildFromProject.Issue8540.A.A.html\",\"topicHref\":\"BuildFromProject.Issue8540.A.A.html\"}]},{\"name\":\"B\",\"href\":\"BuildFromProject.Issue8540.B.html\",\"topicHref\":\"BuildFromProject.Issue8540.B.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"B\",\"href\":\"BuildFromProject.Issue8540.B.B.html\",\"topicHref\":\"BuildFromProject.Issue8540.B.B.html\"}]}]},{\"name\":\"Classes\"},{\"name\":\"Class1\",\"href\":\"BuildFromProject.Class1.html\",\"topicHref\":\"BuildFromProject.Class1.html\"},{\"name\":\"Class1.Issue8665\",\"href\":\"BuildFromProject.Class1.Issue8665.html\",\"topicHref\":\"BuildFromProject.Class1.Issue8665.html\"},{\"name\":\"Class1.Issue8696Attribute\",\"href\":\"BuildFromProject.Class1.Issue8696Attribute.html\",\"topicHref\":\"BuildFromProject.Class1.Issue8696Attribute.html\"},{\"name\":\"Class1.Issue8948\",\"href\":\"BuildFromProject.Class1.Issue8948.html\",\"topicHref\":\"BuildFromProject.Class1.Issue8948.html\"},{\"name\":\"Class1.Test\",\"href\":\"BuildFromProject.Class1.Test-1.html\",\"topicHref\":\"BuildFromProject.Class1.Test-1.html\"},{\"name\":\"Dog\",\"href\":\"BuildFromProject.Dog.html\",\"topicHref\":\"BuildFromProject.Dog.html\"},{\"name\":\"Inheritdoc\",\"href\":\"BuildFromProject.Inheritdoc.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.html\"},{\"name\":\"Inheritdoc.Issue6366\",\"href\":\"BuildFromProject.Inheritdoc.Issue6366.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue6366.html\"},{\"name\":\"Inheritdoc.Issue6366.Class1\",\"href\":\"BuildFromProject.Inheritdoc.Issue6366.Class1-1.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue6366.Class1-1.html\"},{\"name\":\"Inheritdoc.Issue6366.Class2\",\"href\":\"BuildFromProject.Inheritdoc.Issue6366.Class2.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue6366.Class2.html\"},{\"name\":\"Inheritdoc.Issue7035\",\"href\":\"BuildFromProject.Inheritdoc.Issue7035.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue7035.html\"},{\"name\":\"Inheritdoc.Issue7484\",\"href\":\"BuildFromProject.Inheritdoc.Issue7484.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue7484.html\"},{\"name\":\"Inheritdoc.Issue8101\",\"href\":\"BuildFromProject.Inheritdoc.Issue8101.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue8101.html\"},{\"name\":\"Issue8725\",\"href\":\"BuildFromProject.Issue8725.html\",\"topicHref\":\"BuildFromProject.Issue8725.html\"},{\"name\":\"Structs\"},{\"name\":\"Inheritdoc.Issue8129\",\"href\":\"BuildFromProject.Inheritdoc.Issue8129.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue8129.html\"},{\"name\":\"Interfaces\"},{\"name\":\"Class1.IIssue8948\",\"href\":\"BuildFromProject.Class1.IIssue8948.html\",\"topicHref\":\"BuildFromProject.Class1.IIssue8948.html\"},{\"name\":\"IInheritdoc\",\"href\":\"BuildFromProject.IInheritdoc.html\",\"topicHref\":\"BuildFromProject.IInheritdoc.html\"},{\"name\":\"Enums\"},{\"name\":\"Class1.Issue9260\",\"href\":\"BuildFromProject.Class1.Issue9260.html\",\"topicHref\":\"BuildFromProject.Class1.Issue9260.html\"}]},{\"name\":\"BuildFromVBSourceCode\",\"href\":\"BuildFromVBSourceCode.html\",\"topicHref\":\"BuildFromVBSourceCode.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"BaseClass1\",\"href\":\"BuildFromVBSourceCode.BaseClass1.html\",\"topicHref\":\"BuildFromVBSourceCode.BaseClass1.html\"},{\"name\":\"Class1\",\"href\":\"BuildFromVBSourceCode.Class1.html\",\"topicHref\":\"BuildFromVBSourceCode.Class1.html\"}]},{\"name\":\"CatLibrary\",\"href\":\"CatLibrary.html\",\"topicHref\":\"CatLibrary.html\",\"items\":[{\"name\":\"Core\",\"href\":\"CatLibrary.Core.html\",\"topicHref\":\"CatLibrary.Core.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"ContainersRefType.ContainersRefTypeChild\",\"href\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html\"},{\"name\":\"ExplicitLayoutClass\",\"href\":\"CatLibrary.Core.ExplicitLayoutClass.html\",\"topicHref\":\"CatLibrary.Core.ExplicitLayoutClass.html\"},{\"name\":\"Issue231\",\"href\":\"CatLibrary.Core.Issue231.html\",\"topicHref\":\"CatLibrary.Core.Issue231.html\"},{\"name\":\"Structs\"},{\"name\":\"ContainersRefType\",\"href\":\"CatLibrary.Core.ContainersRefType.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.html\"},{\"name\":\"Interfaces\"},{\"name\":\"ContainersRefType.ContainersRefTypeChildInterface\",\"href\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html\"},{\"name\":\"Enums\"},{\"name\":\"ContainersRefType.ColorType\",\"href\":\"CatLibrary.Core.ContainersRefType.ColorType.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ColorType.html\"},{\"name\":\"Delegates\"},{\"name\":\"ContainersRefType.ContainersRefTypeDelegate\",\"href\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html\"}]},{\"name\":\"Classes\"},{\"name\":\"Cat\",\"href\":\"CatLibrary.Cat-2.html\",\"topicHref\":\"CatLibrary.Cat-2.html\"},{\"name\":\"CatException\",\"href\":\"CatLibrary.CatException-1.html\",\"topicHref\":\"CatLibrary.CatException-1.html\"},{\"name\":\"Complex\",\"href\":\"CatLibrary.Complex-2.html\",\"topicHref\":\"CatLibrary.Complex-2.html\"},{\"name\":\"ICatExtension\",\"href\":\"CatLibrary.ICatExtension.html\",\"topicHref\":\"CatLibrary.ICatExtension.html\"},{\"name\":\"Tom\",\"href\":\"CatLibrary.Tom.html\",\"topicHref\":\"CatLibrary.Tom.html\"},{\"name\":\"TomFromBaseClass\",\"href\":\"CatLibrary.TomFromBaseClass.html\",\"topicHref\":\"CatLibrary.TomFromBaseClass.html\"},{\"name\":\"Interfaces\"},{\"name\":\"IAnimal\",\"href\":\"CatLibrary.IAnimal.html\",\"topicHref\":\"CatLibrary.IAnimal.html\"},{\"name\":\"ICat\",\"href\":\"CatLibrary.ICat.html\",\"topicHref\":\"CatLibrary.ICat.html\"},{\"name\":\"Delegates\"},{\"name\":\"FakeDelegate\",\"href\":\"CatLibrary.FakeDelegate-1.html\",\"topicHref\":\"CatLibrary.FakeDelegate-1.html\"},{\"name\":\"MRefDelegate\",\"href\":\"CatLibrary.MRefDelegate-3.html\",\"topicHref\":\"CatLibrary.MRefDelegate-3.html\"},{\"name\":\"MRefNormalDelegate\",\"href\":\"CatLibrary.MRefNormalDelegate.html\",\"topicHref\":\"CatLibrary.MRefNormalDelegate.html\"}]},{\"name\":\"MRef\",\"href\":\"MRef.html\",\"topicHref\":\"MRef.html\",\"items\":[{\"name\":\"Demo\",\"href\":\"MRef.Demo.html\",\"topicHref\":\"MRef.Demo.html\",\"items\":[{\"name\":\"Enumeration\",\"href\":\"MRef.Demo.Enumeration.html\",\"topicHref\":\"MRef.Demo.Enumeration.html\",\"items\":[{\"name\":\"Enums\"},{\"name\":\"ColorType\",\"href\":\"MRef.Demo.Enumeration.ColorType.html\",\"topicHref\":\"MRef.Demo.Enumeration.ColorType.html\"}]}]}]}],\"pdf\":true,\"pdfTocPage\":true}" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.pdf.verified.json deleted file mode 100644 index e2b1d700798..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.pdf.verified.json +++ /dev/null @@ -1,7106 +0,0 @@ -{ - "NumberOfPages": 89, - "Pages": [ - { - "Number": 1, - "Text": "Table of ContentsBuildFromAssembly3ClassesClass14StructsIssue54325BuildFromCSharpSourceCode6ClassesCSharp7BuildFromProject8Issue854010A11ClassesA12B13ClassesB14ClassesClass115Class1.Issue866521Class1.Issue8696Attribute24Class1.Issue894826Class1.Test27Dog28Inheritdoc30Inheritdoc.Issue636632Inheritdoc.Issue6366.Class133Inheritdoc.Issue6366.Class235Inheritdoc.Issue703537Inheritdoc.Issue748438Inheritdoc.Issue810140Issue872542StructsInheritdoc.Issue812944InterfacesClass1.IIssue894845IInheritdoc46EnumsClass1.Issue926047", - "Links": [ - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 33, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 40, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 42, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 2, - "Text": "BuildFromVBSourceCode48ClassesBaseClass149Class150CatLibrary53Core55ClassesContainersRefType.ContainersRefTypeChild56ExplicitLayoutClass57Issue23158StructsContainersRefType59InterfacesContainersRefType.ContainersRefTypeChildInterface61EnumsContainersRefType.ColorType62DelegatesContainersRefType.ContainersRefTypeDelegate63ClassesCat64CatException73Complex74ICatExtension75Tom77TomFromBaseClass79InterfacesIAnimal80ICat82DelegatesFakeDelegate83MRefDelegate84MRefNormalDelegate85MRef86Demo87Enumeration88EnumsColorType89", - "Links": [ - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 63, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 83, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 84, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 85, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 86, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 87, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 88, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 89, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 3, - "Text": "3 / 89ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", - "Links": [ - { - "Goto": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 4, - "Text": "4 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 5, - "Text": "5 / 89Namespace:BuildFromAssemblyAssembly:BuildFromAssembly.dllInherited Membersobject.GetType()\uF1C5 , object.ToString()\uF1C5 , object.Equals(object?)\uF1C5 ,object.Equals(object?, object?)\uF1C5 , object.ReferenceEquals(object?, object?)\uF1C5 ,object.GetHashCode()\uF1C5PropertiesProperty Valuestring\uF1C5Struct Issue5432public struct Issue5432Namepublic string Name { get; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 6, - "Text": "6 / 89ClassesCSharpNamespace BuildFromCSharpSourceCode", - "Links": [ - { - "Goto": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 7, - "Text": "7 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 8, - "Text": "8 / 89NamespacesBuildFromProject.Issue8540ClassesInheritdoc.Issue6366.Class1Class1Inheritdoc.Issue6366.Class2DogClass representing a dog.InheritdocInheritdoc.Issue6366Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Class1.Issue8665Class1.Issue8696AttributeIssue8725A nice classClass1.Issue8948Class1.TestStructsInheritdoc.Issue8129InterfacesNamespace BuildFromProject", - "Links": [ - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 33, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 40, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 42, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 9, - "Text": "9 / 89IInheritdocClass1.IIssue8948EnumsClass1.Issue9260", - "Links": [ - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 10, - "Text": "10 / 89NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", - "Links": [ - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 11, - "Text": "11 / 89ClassesANamespace BuildFromProject.Issue8540.A", - "Links": [ - { - "Goto": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 12, - "Text": "12 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 13, - "Text": "13 / 89ClassesBNamespace BuildFromProject.Issue8540.B", - "Links": [ - { - "Goto": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 14, - "Text": "14 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 15, - "Text": "15 / 89Namespace: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 ForecastClass Class1 PreviewDOCFX001\uF1C5: 'BuildFromProject.Class1' is for evaluation purposes only and is subject tochange or removal in future updates.public class Class1 : IClass1\uF12CIssue1651()public void Issue1651()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 16, - "Text": "16 / 89IConfiguration related helper and extension routines.ExamplesRemarksFor example:Issue1887() Preview'BuildFromProject.Class1.Issue1887()' is for evaluation purposes only and is subject tochange or removal in future updates.public void Issue1887()Issue2623()public void Issue2623()MyClass myClass = new MyClass();void Update(){ myClass.Execute();}MyClass myClass = new MyClass();void Update(){ myClass.Execute();}Issue2723()", - "Links": [] - }, - { - "Number": 17, - "Text": "17 / 89RemarksInline .link\uF1C5Examplespublic void Issue2723()NOTEThis is a . & \" '\uF431for (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", - "Links": [ - { - "Uri": "https://www.github.com/" - }, - { - "Uri": "https://www.github.com/" - }, - { - "Uri": "https://www.github.com/" - } - ] - }, - { - "Number": 18, - "Text": "18 / 89RemarksRemarks@\"\\\\?\\\" @\"\\\\?\\\"RemarksThere's really no reason to not believe that this class can test things.TermDescriptionA TermA DescriptionBee TermBee Description + message.Content); return Task.CompletedTask;}void Update(){ myClass.Execute();}Issue4392()public void Issue4392()Issue7484()public void Issue7484()Issue8764()", - "Links": [] - }, - { - "Number": 19, - "Text": "19 / 89Type ParametersTTestSee AlsoClass1.Test , Class1Calculates the determinant of a 3-dimensional matrix:Returns the smallest value:Returnsdouble\uF1C5public void Issue8764() where T : unmanagedIssue896()public void Issue896()Issue9216()public static double Issue9216()XmlCommentIncludeTag()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.double" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.double" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.double" - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 20, - "Text": "20 / 89This method should do something...RemarksThis is remarks.public void XmlCommentIncludeTag()", - "Links": [] - }, - { - "Number": 21, - "Text": "21 / 89Namespace: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.Issue8665 PreviewDOCFX001\uF1C5: 'BuildFromProject.Class1.Issue8665' is for evaluation purposes only and issubject to change or removal in future updates.public class Class1.Issue8665\uF12CIssue8665()public Issue8665()Issue8665(int)public Issue8665(int foo)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 22, - "Text": "22 / 89Parametersfoo int\uF1C5bar char\uF1C5Parametersfoo int\uF1C5bar char\uF1C5baz string\uF1C5PropertiesProperty Valuechar\uF1C5Issue8665(int, char)public Issue8665(int foo, char bar)Issue8665(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" - }, - { - "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.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "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.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - } - ] - }, - { - "Number": 23, - "Text": "23 / 89Property Valuestring\uF1C5Property Valueint\uF1C5Foopublic int Foo { get; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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" - } - ] - }, - { - "Number": 24, - "Text": "24 / 89Namespace: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 ,Class Class1.Issue8696Attribute PreviewDOCFX001\uF1C5: 'BuildFromProject.Class1.Issue8696Attribute' is for evaluation purposesonly and is subject to change or removal in future updates.public class Class1.Issue8696Attribute : Attribute\uF12C\uF12C", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 25, - "Text": "25 / 89Attribute.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?)\uF1C5 , object.Equals(object?, object?)\uF1C5 ,object.GetHashCode()\uF1C5 , object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object?, object?)\uF1C5 , object.ToString()\uF1C5ConstructorsParametersdescription string\uF1C5?boundsMin int\uF1C5boundsMax int\uF1C5validGameModes string\uF1C5[]?hasMultipleSelections bool\uF1C5enumType Type\uF1C5?Issue8696Attribute(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.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - } - ] - }, - { - "Number": 26, - "Text": "26 / 89Namespace: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.Issue8948 PreviewDOCFX001\uF1C5: 'BuildFromProject.Class1.Issue8948' is for evaluation purposes only and issubject to change or removal in future updates.public class Class1.Issue8948 : Class1.IIssue8948\uF12CDoNothing()public void DoNothing()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 27, - "Text": "27 / 89Namespace: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.Test PreviewDOCFX001\uF1C5: 'BuildFromProject.Class1.Test' is for evaluation purposes only and issubject to change or removal in future updates.public class Class1.Test\uF12C", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 28, - "Text": "28 / 89Namespace:BuildFromProjectAssembly:BuildFromProject.dllClass representing a dog.Inheritanceobject\uF1C5 DogInherited 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()\uF1C5ConstructorsConstructor.Parametersname string\uF1C5Name of the dog.age int\uF1C5Age of the dog.Class Dogpublic class Dog\uF12CDog(string, int)public Dog(string name, int age)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 29, - "Text": "29 / 89PropertiesAge of the dog.Property Valueint\uF1C5Name of the dog.Property Valuestring\uF1C5Agepublic int Age { get; }Namepublic string Name { get; }", - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 30, - "Text": "30 / 89Namespace: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()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 31, - "Text": "31 / 89This method should do something...Issue7629()public void Issue7629()", - "Links": [] - }, - { - "Number": 32, - "Text": "32 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 33, - "Text": "33 / 89Namespace:BuildFromProjectAssembly:BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1Inherited 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 33, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 34, - "Text": "34 / 89ReturnsTThis text inherited.", - "Links": [] - }, - { - "Number": 35, - "Text": "35 / 89Namespace:BuildFromProjectAssembly:BuildFromProject.dllInheritanceobject\uF1C5 Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2Inherited MembersInheritdoc.Issue6366.Class1.TestMethod1(bool, int) , 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()\uF1C5MethodsThis text inherited.Parametersparm1 bool\uF1C5This text NOT inherited.parm2 int\uF1C5This text inherited.Returnsbool\uF1C5Class 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 33, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 33, - "Coordinates": { - "Left": 28, - "Top": 309.5 - } - } - } - ] - }, - { - "Number": 36, - "Text": "36 / 89This text inherited.", - "Links": [] - }, - { - "Number": 37, - "Text": "37 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 38, - "Text": "38 / 89Namespace: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.Class Inheritdoc.Issue7484public class Inheritdoc.Issue7484\uF12CIssue7484()public Issue7484()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Uri": "" - } - ] - }, - { - "Number": 39, - "Text": "39 / 89PropertiesA 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.DoDadpublic string DoDad { get; }BoolReturningMethod(bool)public bool BoolReturningMethod(bool source)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - } - ] - }, - { - "Number": 40, - "Text": "40 / 89Namespace: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 float\uF1C5The starting value.to float\uF1C5The end value.duration float\uF1C5Total tween duration in seconds.Class Inheritdoc.Issue8101public class Inheritdoc.Issue8101\uF12CTween(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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 40, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 41, - "Text": "41 / 89onChange Action\uF1C5<float\uF1C5>A callback that will be invoked every time the tween value changes.Returnsobject\uF1C5The newly created tween instance.Create 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.Returnsobject\uF1C5The newly created tween instance.Tween(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.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "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" - }, - { - "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.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "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.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - } - ] - }, - { - "Number": 42, - "Text": "42 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 42, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 43, - "Text": "43 / 89", - "Links": [] - }, - { - "Number": 44, - "Text": "44 / 89Namespace:BuildFromProjectAssembly:BuildFromProject.dllInherited Membersobject.Equals(object?)\uF1C5 , object.Equals(object?, object?)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.ReferenceEquals(object?, object?)\uF1C5 , object.ToString()\uF1C5ConstructorsParametersfoo string\uF1C5Struct Inheritdoc.Issue8129public struct Inheritdoc.Issue8129Issue8129(string)public Issue8129(string foo)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 45, - "Text": "45 / 89Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948 PreviewDOCFX001\uF1C5: 'BuildFromProject.Class1.IIssue8948' is for evaluation purposes only andis subject to change or removal in future updates.public interface Class1.IIssue8948DoNothing()void DoNothing()", - "Links": [ - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 46, - "Text": "46 / 89Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", - "Links": [ - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 47, - "Text": "47 / 89Namespace:BuildFromProjectAssembly:BuildFromProject.dllFieldsValue = 0This is a regular enum value.This is a remarks section. Very important remarks about Value go here.OldAndUnusedValue = 1 DeprecatedThis is old and unused. You shouldn't use it anymore.Don't use this, seriously! Use Value instead.OldAndUnusedValue2 = 2 DeprecatedThis is old and unused. You shouldn't use it anymore.Don't use this, seriously! Use Value instead.Enum Class1.Issue9260 PreviewDOCFX001\uF1C5: 'BuildFromProject.Class1.Issue9260' is for evaluation purposes only and issubject to change or removal in future updates.public enum Class1.Issue9260Use Value", - "Links": [ - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Uri": "https://example.org/DOCFX001" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 48, - "Text": "48 / 89ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", - "Links": [ - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 49, - "Text": "49 / 89Namespace: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)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 50, - "Text": "50 / 89Namespace:BuildFromVBSourceCodeThis is summary from vb class...Inheritanceobject\uF1C5 BaseClass1 Class1Inherited MembersBaseClass1.WithDeclarationKeyword(Class1) , object.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 ValueClass1PropertiesClass Class1public class Class1 : BaseClass1\uF12C\uF12CValueClasspublic Class1 ValueClassKeyword DeprecatedThis member is obsolete.", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Coordinates": { - "Left": 28, - "Top": 308 - } - } - }, - { - "Goto": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 51, - "Text": "51 / 89Property ValueClass1MethodsThis is a FunctionParametersname string\uF1C5Name as the String valueReturnsint\uF1C5Returns AhoooWhat is Sub?Parameterskeyword Class1[Obsolete(\"This member is obsolete.\", true)]public Class1 Keyword { get; }Value(string)public int Value(string name)WithDeclarationKeyword(Class1)public override DateTime WithDeclarationKeyword(Class1 keyword)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 52, - "Text": "52 / 89ReturnsDateTime\uF1C5", - "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": 53, - "Text": "53 / 89NamespacesCatLibrary.CoreClassesCatHere'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 classCatExceptionComplexICatExtensionIt'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.ICatNamespace CatLibrary", - "Links": [ - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 54, - "Text": "54 / 89Cat's interfaceDelegatesFakeDelegateFake delegateMRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", - "Links": [ - { - "Goto": { - "PageNumber": 83, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 84, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 85, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 55, - "Text": "55 / 89ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231Issue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", - "Links": [ - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 63, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 56, - "Text": "56 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 57, - "Text": "57 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 58, - "Text": "58 / 89Namespace:CatLibrary.CoreAssembly:CatLibrary.dll, CatLibrary.Core.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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 59, - "Text": "59 / 89Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllStruct ContainersRefTypeInherited Membersobject.Equals(object?)\uF1C5 , object.Equals(object?, object?)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.ReferenceEquals(object?, object?)\uF1C5 , object.ToString()\uF1C5Extension MethodsIssue231.Bar(ContainersRefType) , Issue231.Foo(ContainersRefType)FieldsColorCountField Valuelong\uF1C5PropertiesGetColorCountStruct ContainersRefTypepublic struct ContainersRefTypeColorCountpublic long ColorCountGetColorCount", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Coordinates": { - "Left": 28, - "Top": 380 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Coordinates": { - "Left": 28, - "Top": 204.49994 - } - } - } - ] - }, - { - "Number": 60, - "Text": "60 / 89Property Valuelong\uF1C5MethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Returnsint\uF1C5Event TypeEventHandler\uF1C5public 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "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.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - } - ] - }, - { - "Number": 61, - "Text": "61 / 89Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", - "Links": [ - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 62, - "Text": "62 / 89Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", - "Links": [ - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 63, - "Text": "63 / 89Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", - "Links": [ - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 64, - "Text": "64 / 89Namespace: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 classType 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?)\uF1C5 , object.Equals(object?, object?)\uF1C5 , object.GetHashCode()\uF1C5 ,object.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object?, object?)\uF1C5 , object.ToString()\uF1C5Class Cat Deprecated[Serializable][Obsolete]public class Cat : ICat, IAnimal where T : class, new() where K : struct\uF12C", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 65, - "Text": "65 / 89Extension 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.RemarksHere's all the content you can see in this class.ConstructorsDefault constructor.Constructor with one generic parameter.var a = new Cat(object, int)();int catNumber = new int();unsafe{ a.GetFeetLength(catNumber);}Cat()public Cat()Cat(T)public Cat(T ownType)", - "Links": [ - { - "Goto": { - "PageNumber": 75, - "Coordinates": { - "Left": 28, - "Top": 290 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - } - ] - }, - { - "Number": 66, - "Text": "66 / 89ParametersownType TThis parameter type defined by class.It's a complex constructor. The parameter will have some attributes.ParametersnickName 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.FieldsField with attribute.Cat(string, out int, string, bool)public Cat(string nickName, out int age, string realName, bool isHealthy)isHealthy Deprecated[ContextStatic][NonSerialized][Obsolete]public bool isHealthy", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - } - ] - }, - { - "Number": 67, - "Text": "67 / 89Field Valuebool\uF1C5PropertiesHint cat's age.Property Valueint\uF1C5EII property.Property Valuestring\uF1C5This is index property of Cat. You can see that the visibility is different between get and setmethod.Property ValueAge Deprecated[Obsolete]protected int Age { get; set; }Namepublic string Name { get; }this[string]public int this[string a] { protected get; set; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 68, - "Text": "68 / 89int\uF1C5MethodsIt's a method with complex return type.Parametersdate DateTime\uF1C5Date time to now.ReturnsDictionary\uF1C5>It's a relationship map of different kind food.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.CalculateFood(DateTime)public Dictionary> CalculateFood(DateTime date)Equals(object)public override bool Equals(object obj)", - "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" - }, - { - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "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.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - } - ] - }, - { - "Number": 69, - "Text": "69 / 89It'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.ParametersownType TType come from class define.anotherOwnType KType come from class define.cheat bool\uF1C5Hint whether this cat has cheat mode.GetTailLength(int*, params object[])public long GetTailLength(int* catName, params object[] parameters)Jump(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" - }, - { - "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.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - } - ] - }, - { - "Number": 70, - "Text": "70 / 89ExceptionsArgumentException\uF1C5This is an argument exceptionEat event of this catEvent TypeEventHandler\uF1C5OperatorsAddition operator of this class.Parameterslsr Cat..rsr int\uF1C5~~ReturnsownEat DeprecatedThis event handler is deprecated.[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.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "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": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 71, - "Text": "71 / 89int\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.Similar with operaotr +, refer to that topic.Parameterslsr Catrsr int\uF1C5Returnsint\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" - }, - { - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 72, - "Text": "72 / 89", - "Links": [] - }, - { - "Number": 73, - "Text": "73 / 89Namespace: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.GetType()\uF1C5 , object.MemberwiseClone()\uF1C5 ,object.ReferenceEquals(object?, object?)\uF1C5 , object.ToString()\uF1C5Class CatExceptionpublic class CatException : Exception, ISerializable\uF12C\uF12C", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 74, - "Text": "74 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 75, - "Text": "75 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 76, - "Text": "76 / 89Extension 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Goto": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 77, - "Text": "77 / 89Namespace: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 inputClass Tompublic class Tom\uF12CTomMethod(Complex, Tuple)public Complex TomMethod(Complex a, Tuple b)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 78, - "Text": "78 / 89b Tuple\uF1C5Another complex inputReturnsComplexComplex 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.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 79, - "Text": "79 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Coordinates": { - "Left": 28, - "Top": 286.25 - } - } - } - ] - }, - { - "Number": 80, - "Text": "80 / 89Namespace:CatLibraryAssembly:CatLibrary.dllThis is basic interface of all animal.PropertiesName of Animal.Property Valuestring\uF1C5Return specific number animal's name.Property Valuestring\uF1C5MethodsInterface IAnimalpublic interface IAnimalNamestring Name { get; }this[int]string this[int index] { get; }Eat()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 81, - "Text": "81 / 89Animal's eat method.Overload method of eat. This define the animal eat by which tool.Parameterstool ToolTool name.Type ParametersToolIt's a class type.Feed the animal with some foodParametersfood string\uF1C5Food to eatvoid Eat()Eat(Tool)void Eat(Tool tool) where Tool : classEat(string)void Eat(string food)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 82, - "Text": "82 / 89Namespace:CatLibraryAssembly:CatLibrary.dllCat's interfaceImplementsIAnimalExtension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType) , ICatExtension.Sleep(ICat, long)eat event of cat. Every cat must implement this event.Event TypeEventHandler\uF1C5Interface ICatpublic interface ICat : IAnimaleatevent EventHandler eat", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Goto": { - "PageNumber": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Coordinates": { - "Left": 28, - "Top": 290 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - } - ] - }, - { - "Number": 83, - "Text": "83 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "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": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 84, - "Text": "84 / 89Namespace: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": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 85, - "Text": "85 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 86, - "Text": "86 / 89NamespacesMRef.DemoNamespace MRef", - "Links": [ - { - "Goto": { - "PageNumber": 87, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 87, - "Text": "87 / 89NamespacesMRef.Demo.EnumerationNamespace MRef.Demo", - "Links": [ - { - "Goto": { - "PageNumber": 88, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 88, - "Text": "88 / 89EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", - "Links": [ - { - "Goto": { - "PageNumber": 89, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 89, - "Text": "89 / 89Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Goto": { - "PageNumber": 88, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - } - ], - "Bookmarks": [ - { - "Title": "BuildFromAssembly", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Structs", - "Children": [], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue5432", - "Children": [], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromCSharpSourceCode", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "CSharp", - "Children": [], - "Destination": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromProject", - "Children": [ - { - "Title": "Issue8540", - "Children": [ - { - "Title": "A", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "A", - "Children": [], - "Destination": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "B", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "B", - "Children": [], - "Destination": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8665", - "Children": [], - "Destination": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8696Attribute", - "Children": [], - "Destination": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8948", - "Children": [], - "Destination": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Test", - "Children": [], - "Destination": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Dog", - "Children": [], - "Destination": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc", - "Children": [], - "Destination": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366", - "Children": [], - "Destination": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366.Class1", - "Children": [], - "Destination": { - "PageNumber": 33, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366.Class2", - "Children": [], - "Destination": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue7035", - "Children": [], - "Destination": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue7484", - "Children": [], - "Destination": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue8101", - "Children": [], - "Destination": { - "PageNumber": 40, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue8725", - "Children": [], - "Destination": { - "PageNumber": 42, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Structs", - "Children": [], - "Destination": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue8129", - "Children": [], - "Destination": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Interfaces", - "Children": [], - "Destination": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.IIssue8948", - "Children": [], - "Destination": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "IInheritdoc", - "Children": [], - "Destination": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Enums", - "Children": [], - "Destination": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue9260", - "Children": [], - "Destination": { - "PageNumber": 47, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromVBSourceCode", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BaseClass1", - "Children": [], - "Destination": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "CatLibrary", - "Children": [ - { - "Title": "Core", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeChild", - "Children": [], - "Destination": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ExplicitLayoutClass", - "Children": [], - "Destination": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue231", - "Children": [], - "Destination": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Structs", - "Children": [], - "Destination": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType", - "Children": [], - "Destination": { - "PageNumber": 59, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Interfaces", - "Children": [], - "Destination": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeChildInterface", - "Children": [], - "Destination": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Enums", - "Children": [], - "Destination": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ColorType", - "Children": [], - "Destination": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Delegates", - "Children": [], - "Destination": { - "PageNumber": 63, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeDelegate", - "Children": [], - "Destination": { - "PageNumber": 63, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Cat", - "Children": [], - "Destination": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "CatException", - "Children": [], - "Destination": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Complex", - "Children": [], - "Destination": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ICatExtension", - "Children": [], - "Destination": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Tom", - "Children": [], - "Destination": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "TomFromBaseClass", - "Children": [], - "Destination": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Interfaces", - "Children": [], - "Destination": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "IAnimal", - "Children": [], - "Destination": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ICat", - "Children": [], - "Destination": { - "PageNumber": 82, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Delegates", - "Children": [], - "Destination": { - "PageNumber": 83, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "FakeDelegate", - "Children": [], - "Destination": { - "PageNumber": 83, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRefDelegate", - "Children": [], - "Destination": { - "PageNumber": 84, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRefNormalDelegate", - "Children": [], - "Destination": { - "PageNumber": 85, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 53, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRef", - "Children": [ - { - "Title": "Demo", - "Children": [ - { - "Title": "Enumeration", - "Children": [ - { - "Title": "Enums", - "Children": [], - "Destination": { - "PageNumber": 89, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ColorType", - "Children": [], - "Destination": { - "PageNumber": 89, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 88, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 87, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 86, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.verified.json deleted file mode 100644 index 7438292da37..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/toc.verified.json +++ /dev/null @@ -1,367 +0,0 @@ -{ - "items": [ - { - "name": "BuildFromAssembly", - "href": "BuildFromAssembly.html", - "topicHref": "BuildFromAssembly.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "Class1", - "href": "BuildFromAssembly.Class1.html", - "topicHref": "BuildFromAssembly.Class1.html" - }, - { - "name": "Structs" - }, - { - "name": "Issue5432", - "href": "BuildFromAssembly.Issue5432.html", - "topicHref": "BuildFromAssembly.Issue5432.html" - } - ] - }, - { - "name": "BuildFromCSharpSourceCode", - "href": "BuildFromCSharpSourceCode.html", - "topicHref": "BuildFromCSharpSourceCode.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "CSharp", - "href": "BuildFromCSharpSourceCode.CSharp.html", - "topicHref": "BuildFromCSharpSourceCode.CSharp.html" - } - ] - }, - { - "name": "BuildFromProject", - "href": "BuildFromProject.html", - "topicHref": "BuildFromProject.html", - "items": [ - { - "name": "Issue8540", - "href": "BuildFromProject.Issue8540.html", - "topicHref": "BuildFromProject.Issue8540.html", - "items": [ - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.html", - "topicHref": "BuildFromProject.Issue8540.A.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.A.html", - "topicHref": "BuildFromProject.Issue8540.A.A.html" - } - ] - }, - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.html", - "topicHref": "BuildFromProject.Issue8540.B.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.B.html", - "topicHref": "BuildFromProject.Issue8540.B.B.html" - } - ] - } - ] - }, - { - "name": "Classes" - }, - { - "name": "Class1", - "href": "BuildFromProject.Class1.html", - "topicHref": "BuildFromProject.Class1.html" - }, - { - "name": "Class1.Issue8665", - "href": "BuildFromProject.Class1.Issue8665.html", - "topicHref": "BuildFromProject.Class1.Issue8665.html" - }, - { - "name": "Class1.Issue8696Attribute", - "href": "BuildFromProject.Class1.Issue8696Attribute.html", - "topicHref": "BuildFromProject.Class1.Issue8696Attribute.html" - }, - { - "name": "Class1.Issue8948", - "href": "BuildFromProject.Class1.Issue8948.html", - "topicHref": "BuildFromProject.Class1.Issue8948.html" - }, - { - "name": "Class1.Test", - "href": "BuildFromProject.Class1.Test-1.html", - "topicHref": "BuildFromProject.Class1.Test-1.html" - }, - { - "name": "Dog", - "href": "BuildFromProject.Dog.html", - "topicHref": "BuildFromProject.Dog.html" - }, - { - "name": "Inheritdoc", - "href": "BuildFromProject.Inheritdoc.html", - "topicHref": "BuildFromProject.Inheritdoc.html" - }, - { - "name": "Inheritdoc.Issue6366", - "href": "BuildFromProject.Inheritdoc.Issue6366.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.html" - }, - { - "name": "Inheritdoc.Issue6366.Class1", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html" - }, - { - "name": "Inheritdoc.Issue6366.Class2", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class2.html" - }, - { - "name": "Inheritdoc.Issue7035", - "href": "BuildFromProject.Inheritdoc.Issue7035.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7035.html" - }, - { - "name": "Inheritdoc.Issue7484", - "href": "BuildFromProject.Inheritdoc.Issue7484.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7484.html" - }, - { - "name": "Inheritdoc.Issue8101", - "href": "BuildFromProject.Inheritdoc.Issue8101.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8101.html" - }, - { - "name": "Issue8725", - "href": "BuildFromProject.Issue8725.html", - "topicHref": "BuildFromProject.Issue8725.html" - }, - { - "name": "Structs" - }, - { - "name": "Inheritdoc.Issue8129", - "href": "BuildFromProject.Inheritdoc.Issue8129.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8129.html" - }, - { - "name": "Interfaces" - }, - { - "name": "Class1.IIssue8948", - "href": "BuildFromProject.Class1.IIssue8948.html", - "topicHref": "BuildFromProject.Class1.IIssue8948.html" - }, - { - "name": "IInheritdoc", - "href": "BuildFromProject.IInheritdoc.html", - "topicHref": "BuildFromProject.IInheritdoc.html" - }, - { - "name": "Enums" - }, - { - "name": "Class1.Issue9260", - "href": "BuildFromProject.Class1.Issue9260.html", - "topicHref": "BuildFromProject.Class1.Issue9260.html" - } - ] - }, - { - "name": "BuildFromVBSourceCode", - "href": "BuildFromVBSourceCode.html", - "topicHref": "BuildFromVBSourceCode.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "BaseClass1", - "href": "BuildFromVBSourceCode.BaseClass1.html", - "topicHref": "BuildFromVBSourceCode.BaseClass1.html" - }, - { - "name": "Class1", - "href": "BuildFromVBSourceCode.Class1.html", - "topicHref": "BuildFromVBSourceCode.Class1.html" - } - ] - }, - { - "name": "CatLibrary", - "href": "CatLibrary.html", - "topicHref": "CatLibrary.html", - "items": [ - { - "name": "Core", - "href": "CatLibrary.Core.html", - "topicHref": "CatLibrary.Core.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "ContainersRefType.ContainersRefTypeChild", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html" - }, - { - "name": "ExplicitLayoutClass", - "href": "CatLibrary.Core.ExplicitLayoutClass.html", - "topicHref": "CatLibrary.Core.ExplicitLayoutClass.html" - }, - { - "name": "Issue231", - "href": "CatLibrary.Core.Issue231.html", - "topicHref": "CatLibrary.Core.Issue231.html" - }, - { - "name": "Structs" - }, - { - "name": "ContainersRefType", - "href": "CatLibrary.Core.ContainersRefType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.html" - }, - { - "name": "Interfaces" - }, - { - "name": "ContainersRefType.ContainersRefTypeChildInterface", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html" - }, - { - "name": "Enums" - }, - { - "name": "ContainersRefType.ColorType", - "href": "CatLibrary.Core.ContainersRefType.ColorType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ColorType.html" - }, - { - "name": "Delegates" - }, - { - "name": "ContainersRefType.ContainersRefTypeDelegate", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html" - } - ] - }, - { - "name": "Classes" - }, - { - "name": "Cat", - "href": "CatLibrary.Cat-2.html", - "topicHref": "CatLibrary.Cat-2.html" - }, - { - "name": "CatException", - "href": "CatLibrary.CatException-1.html", - "topicHref": "CatLibrary.CatException-1.html" - }, - { - "name": "Complex", - "href": "CatLibrary.Complex-2.html", - "topicHref": "CatLibrary.Complex-2.html" - }, - { - "name": "ICatExtension", - "href": "CatLibrary.ICatExtension.html", - "topicHref": "CatLibrary.ICatExtension.html" - }, - { - "name": "Tom", - "href": "CatLibrary.Tom.html", - "topicHref": "CatLibrary.Tom.html" - }, - { - "name": "TomFromBaseClass", - "href": "CatLibrary.TomFromBaseClass.html", - "topicHref": "CatLibrary.TomFromBaseClass.html" - }, - { - "name": "Interfaces" - }, - { - "name": "IAnimal", - "href": "CatLibrary.IAnimal.html", - "topicHref": "CatLibrary.IAnimal.html" - }, - { - "name": "ICat", - "href": "CatLibrary.ICat.html", - "topicHref": "CatLibrary.ICat.html" - }, - { - "name": "Delegates" - }, - { - "name": "FakeDelegate", - "href": "CatLibrary.FakeDelegate-1.html", - "topicHref": "CatLibrary.FakeDelegate-1.html" - }, - { - "name": "MRefDelegate", - "href": "CatLibrary.MRefDelegate-3.html", - "topicHref": "CatLibrary.MRefDelegate-3.html" - }, - { - "name": "MRefNormalDelegate", - "href": "CatLibrary.MRefNormalDelegate.html", - "topicHref": "CatLibrary.MRefNormalDelegate.html" - } - ] - }, - { - "name": "MRef", - "href": "MRef.html", - "topicHref": "MRef.html", - "items": [ - { - "name": "Demo", - "href": "MRef.Demo.html", - "topicHref": "MRef.Demo.html", - "items": [ - { - "name": "Enumeration", - "href": "MRef.Demo.Enumeration.html", - "topicHref": "MRef.Demo.Enumeration.html", - "items": [ - { - "name": "Enums" - }, - { - "name": "ColorType", - "href": "MRef.Demo.Enumeration.ColorType.html", - "topicHref": "MRef.Demo.Enumeration.ColorType.html" - } - ] - } - ] - } - ] - } - ], - "pdf": true, - "pdfTocPage": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/csharp_coding_standards.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/csharp_coding_standards.html.view.verified.json deleted file mode 100644 index f0d552129b7..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/csharp_coding_standards.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Introduction

      \n

      The 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 all developers on the team in a consistent manner.

      \n
      \n

      "Any fool can write code that a computer can understand. Good programmers write code that humans understand".

      \n

      Martin Fowler. Refactoring: Improving the design of existing code.

      \n
      \n

      Purpose

      \n

      The aim of this section is to define a set of C# coding standards to be used by CAPS build team to guarantee maximum legibility, reliability, re-usability and homogeneity of our code. Each section is marked Mandatory or Recommended. Mandatory sections, will be enforced during code reviews as well as tools like StyleCop and FxCop, and code will not be considered complete until it is compliant.

      \n

      Scope

      \n

      This section contains general C# coding standards which can be applied to any type of application developed in C#, based on Framework Design Guidelines.

      \n

      It does not pretend to be a tutorial on C#. It only includes a set of limitations and recommendations focused on clarifying the development.

      \n

      Tools

      \n
        \n
      • Resharper is a great 3rd party code cleanup and style tool.
      • \n
      • StyleCop analyzes C# srouce code to enforce a set of style and consistency rules and has been integrated into many 3rd party development tools such as Resharper.
      • \n
      • FxCop is an application that analyzes managed code assemblies (code that targets the .NET Framework common language runtime) and reports information about the assemblies, such as possible design, localization, performance, and security improvements.
      • \n
      • C# Stylizer does many of the style rules automatically
      • \n
      \n

      Highlights of Coding Standards

      \n

      This section is not intended to give a summary of all the coding standards that enabled by our customized StyleCop, but to give a highlight of some rules one will possibly meet in daily coding life. It also provides some recommended however not mandatory(which means not enabled in StyleCop) coding standards.

      \n

      File Layout (Recommended)

      \n

      Only one public class is allowed per file.

      \n

      The file name is derived from the class name.

      \n
      \tClass   : Observer\n\tFilename: Observer.cs\n
      \n

      Class Definition Order (Mandatory)

      \n

      The class definition contains class members in the following order, from less restricted scope (public) to more restrictive (private):

      \n
        \n
      • Nested types, e.g. classes, enum, struct, etc.
      • \n
      • Field members, e.g. member variables, const, etc.
      • \n
      • Member functions\n
          \n
        • Constructors
        • \n
        • Finalizer (Do not use unless absolutely necessary)
        • \n
        • Methods (Properties, Events, Operations, Overridables, Static)
        • \n
        • Private nested types
        • \n
        \n
      • \n
      \n

      Naming (Mandatory)

      \n
        \n
      • DO use PascalCasing for all public member, type, and namespace names consisting of multiple words.

        \n
          PropertyDescriptor\n  HtmlTag\n  IOStream\n
        \n
      • \n
      \n

      NOTE: A special case is made for two-letter acronyms in which both letters are capitalized, e.g. IOStream

      \n
        \n
      • DO use camelCasing for parameter names.

        \n
          propertyDescriptor\n  htmlTag\n  ioStream\n
        \n
      • \n
      • DO start with underscore for private fields

        \n
          private readonly Guid _userId = Guid.NewGuid();\n
        \n
      • \n
      • DO start static readonly fields, constants with capitalized case

        \n
          private static readonly IEntityAccessor EntityAccessor = null;\n  private const string MetadataName = "MetadataName";\n
        \n
      • \n
      • DO NOT capitalize each word in so-called closed-form compound words.

        \n
      • \n
      • DO have "Async" explicitly in the Async method name to notice people how to use it properly

        \n
      • \n
      \n

      Formatting (Mandatory)

      \n
        \n
      • DO use spaces over tabs, and always show all spaces/tabs in IDE
      • \n
      \n
      \n

      Tips

      \n

      Visual Studio > TOOLS > Options > Text Editor > C# > Tabs > Insert spaces (Tab size: 4)

      \n

      Visual Studio > Edit > Advanced > View White Space

      \n
      \n
        \n
      • DO add using inside namespace declaration

        \n
          namespace Microsoft.Content.Build.BuildWorker.UnitTest\n  {\n  \tusing System;\n  }\n
        \n
      • \n
      • DO add a space when:

        \n
          \n
        1. for (var i = 0; i < 1; i++)
        2. \n
        3. if (a == b)
        4. \n
        \n
      • \n
      \n

      Cross-platform coding

      \n

      Our code should supports multiple operating systems. Don't assume we only run (and develop) on Windows. Code should be sensitvie to the differences between OS's. Here are some specifics to consider.

      \n
        \n
      • 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.
      • \n
      \n
      \n

      Note

      \n

      Be aware that thes line-endings may cause problems in code when using @"" text blocks with line breaks.

      \n
      \n
        \n
      • DO Use Path.Combine() or Path.DirectorySeparatorChar to separate directories. If this is not possible (such as in scripting), use a forward slash /. Windows is more forgiving than Linux in this regard.
      • \n
      \n

      Unit tests and functional tests

      \n

      Assembly naming

      \n

      The unit tests for the Microsoft.Foo assembly live in the Microsoft.Foo.Tests assembly.

      \n

      The functional tests for the Microsoft.Foo assmebly live in the Microsoft.Foo.FunctionalTests assmebly.

      \n

      In general there should be exactly one unit test assebmly for each product runtime assembly. In general there should be one functional test assembly per repo. Exceptions can be made for both.

      \n

      Unit test class naming

      \n

      Test 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.

      \n

      Unit test method naming

      \n

      Unit test method names must be descriptive about what is being tested, under what conditions, and what the expectations are. Pascal casing and underscores can be used to improve readability. The following test names are correct:

      \n
      PublicApiArgumentsShouldHaveNotNullAnnotation\nPublic_api_arguments_should_have_not_null_annotation\n
      \n

      The following test names are incorrect:

      \n
      Test1\nConstructor\nFormatString\nGetData\n
      \n

      Unit test structure

      \n

      The contents of every unit test should be split into three distinct stages, optionally separated by these comments:

      \n
      // Arrange\n// Act\n// Assert\n
      \n

      The crucial thing here is the Act stage is exactly one statement. That one statement is nothing more than a call to the one method that you are trying to test. keeping that one statement as simple as possible is also very important. For example, this is not ideal:

      \n
      int result = myObj.CallSomeMethod(GetComplexParam1(), GetComplexParam2(), GetComplexParam3());\n
      \n

      This style is not recomended because way too many things can go wrong in this one statement. All the GetComplexParamN() calls can throw for a variety of reasons unrelated to the test itself. It is thus unclear to someone running into a problem why the failure occured.

      \n

      The ideal pattern is to move the complex parameter building into the `Arrange section:

      \n
      // Arrange\nP1 p1 = GetComplexParam1();\nP2 p2 = GetComplexParam2();\nP3 p3 = GetComplexParam3();\n\n// Act\nint result = myObj.CallSomeMethod(p1, p2, p3);\n\n// Assert\nAssert.AreEqual(1234, result);\n
      \n

      Now the only reason the line with CallSomeMethod() can fail is if the method itself blew up.

      \n

      Testing exception messages

      \n

      In general testing the specific exception message in a unit test is important. This ensures that the exact desired exception is what is being tested rather than a different exception of the same type. In order to verify the exact exception it is important to verify the message.

      \n
      var ex = Assert.Throws<InvalidOperationException>(\n    () => fruitBasket.GetBananaById(1234));\nAssert.Equal(\n    "1234",\n    ex.Message);\n
      \n

      Use xUnit.net's plethora of built-in assertions

      \n

      xUnit.net includes many kinds of assertions – please use the most appropriate one for your test. This will make 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:

      \n
      Assert.Equal(true, someBool);\n\nAssert.True("abc123" == someString);\n\nAssert.True(list1.Length == list2.Length);\n\nfor (int i = 0; i < list1.Length; i++) {\n    Assert.True(\n        String.Equals\n            list1[i],\n            list2[i],\n            StringComparison.OrdinalIgnoreCase));\n}\n
      \n

      These are good:

      \n
      Assert.True(someBool);\n\nAssert.Equal("abc123", someString);\n\n// built-in collection assertions!\nAssert.Equal(list1, list2, StringComparer.OrdinalIgnoreCase);\n
      \n

      Parallel tests

      \n

      By default all unit test assemblies should run in parallel mode, which is the default. Unit tests shouldn't depend 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!

      \n

      For functional tests it is reasonable to disable parallel tests.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/articles/csharp_coding_standards.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "articles/csharp_coding_standards.md", - "documentation": { - "remote": { - "path": "samples/seed/articles/csharp_coding_standards.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      C# Coding Standards

      ", - "title": "C# Coding Standards", - "wordCount": 1242.0, - "_key": "articles/csharp_coding_standards.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "articles/csharp_coding_standards.html", - "_rel": "../", - "_tocKey": "~/articles/toc.yml", - "_tocPath": "articles/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/articles/csharp_coding_standards.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/docfx_getting_started.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/docfx_getting_started.html.view.verified.json deleted file mode 100644 index 8fc8c08c9d0..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/docfx_getting_started.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Getting Started

      \n

      This is a seed. \"Seed\"

      \n

      docfx is an API documentation generator for .NET, currently support C# and VB. It has the ability to extract triple slash comments out from your source code. What's more, it has syntax to link additional files to API to add additional remarks. docfx will scan your source code and your additional conceptual files and generate a complete HTML documentation website for you. docfx provides the flexibility for you 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.

      \n
        \n
      • Click "View Source" for an API to route to the source code in GitHub (your API must be pushed to GitHub)
      • \n
      • docfx provide DNX version for cross platform use.
      • \n
      • docfx can be used within Visual Studio seamlessly. NOTE offical docfx.msbuild nuget package is now in pre-release version. You can also build your own with source code and use it locally.
      • \n
      • 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 file inclusion, cross reference, and yaml header.
      • \n
      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/articles/docfx_getting_started.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "articles/docfx_getting_started.md", - "documentation": { - "remote": { - "path": "samples/seed/articles/docfx_getting_started.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Getting Started with docfx

      ", - "title": "Getting Started with docfx", - "wordCount": 189.0, - "_key": "articles/docfx_getting_started.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "articles/docfx_getting_started.html", - "_rel": "../", - "_tocKey": "~/articles/toc.yml", - "_tocPath": "articles/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/articles/docfx_getting_started.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/engineering_guidelines.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/engineering_guidelines.html.view.verified.json deleted file mode 100644 index f10cc0b2241..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/engineering_guidelines.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Basics

      \n

      Copyright header and license notice

      \n

      All source code files require the following exact header according to its language (please do not make any changes to it).

      \n
      \n

      extension: .cs

      \n
      \n
      // Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n
      \n
      \n

      extension: .js

      \n
      \n
      // Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n
      \n
      \n

      extension: .css

      \n
      \n
      /**\n * Licensed to the .NET Foundation under one or more agreements.\n * The .NET Foundation licenses this file to you under the MIT license.\n */\n
      \n
      \n

      extension: .tmpl, .tmpl.partial

      \n
      \n
      {{!Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license.}}\n
      \n

      External dependencies

      \n

      This refers to dependencies on projects (i.e. NuGet packages) outside of the docfx repo, and especially outside of Microsoft. Adding new dependencies require additional approval.

      \n

      Current approved dependencies are:

      \n
        \n
      • Newtonsoft.Json
      • \n
      • Jint
      • \n
      • HtmlAgilityPack
      • \n
      • Nustache
      • \n
      • YamlDotNet
      • \n
      \n

      Code reviews and checkins

      \n

      To help ensure that only the highest quality code makes its way into the project, please submit all your code changes to GitHub as PRs. This includes runtime code changes, unit test updates, and deployment scripts. For example, sending a PR for just an update to a unit test might seem like a waste of time but the unit tests are just as important as the product code and as such, reviewing changes to them is also just as important.

      \n

      The advantages are numerous: improving code quality, more visibility on changes and their potential impact, avoiding duplication of effort, and creating general awareness of progress being made in various areas.

      \n

      In general a PR should be signed off(using the \uD83D\uDC4D emoticon) by the Owner of that code.

      \n

      To commit the PR to the repo do not use the Big Green Button. Instead, do a typical push that you would use with Git (e.g. local pull, rebase, merge, push).

      \n

      Source Code Management

      \n

      Branch strategy

      \n

      In general:

      \n
        \n
      • master has the code for the latest release on NuGet.org. (e.g. 1.0.0, 1.1.0)
      • \n
      • dev has the code that is being worked on but not yet released. This is the branch into which devs normally submit pull requests and merge changes into. We run daily CI towards dev branch and generate pre-release nuget package, e.g. 1.0.1-alpha-9-abcdefsd.
      • \n
      • hotfix has the code for fixing master bug after it is released. hotfix changes will be merged back to master and dev once it is verified.
      • \n
      \n

      Solution and project folder structure and naming

      \n

      Solution files go in the repo root. The default entry point is All.sln.

      \n

      Every project also needs a project.json and a matching .xproj file. This project.json is the source of truth for a project's dependencies and configuration options.

      \n

      Solution need to contain solution folders that match the physical folder (src, test, tools, etc.).

      \n

      Assembly naming pattern

      \n

      The general naming pattern is Docfx.<area>.<subarea>.

      \n

      Unit tests

      \n

      We use xUnit.net for all unit testing.

      \n

      Coding Standards

      \n

      Please refer to C# Coding standards for detailed guideline for C# coding standards.

      \n

      TODO Template Coding standards

      \n

      TODO Template Preprocess JS Coding standards

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/articles/engineering_guidelines.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "articles/engineering_guidelines.md", - "documentation": { - "remote": { - "path": "samples/seed/articles/engineering_guidelines.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Engineering Guidelines

      ", - "title": "Engineering Guidelines", - "wordCount": 521.0, - "_key": "articles/engineering_guidelines.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "articles/engineering_guidelines.html", - "_rel": "../", - "_tocKey": "~/articles/toc.yml", - "_tocPath": "articles/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/articles/engineering_guidelines.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/markdown.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/markdown.html.view.verified.json deleted file mode 100644 index 031cf1dc26b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/markdown.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Markdown is a lightweight markup language with plain text formatting syntax. Docfx supports CommonMark compliant Markdown parsed through the Markdig parsing engine.

      \n

      Link to Math Expressions

      \n

      Block Quotes

      \n
      \n

      This is a block quote.

      \n
      \n

      Alerts

      \n
      \n
      Note
      \n

      Information the user should notice even if skimming.

      \n
      \n
      \n
      Tip
      \n

      Optional information to help a user be more successful.

      \n
      \n
      \n
      Important
      \n

      Essential information required for user success.

      \n
      \n
      \n
      Caution
      \n

      Negative potential consequences of an action.

      \n
      \n
      \n
      Warning
      \n

      Dangerous certain consequences of an action.

      \n
      \n
      \n
      MY TODO
      \n

      This is a TODO.

      \n
      \n

      Image

      \n

      \"alt-text\"

      \n

      Mermaid Diagrams

      \n

      Flowchart

      \n
      flowchart LR\n\nA[Hard] -->|Text| B(Round)\nB --> C{Decision}\nC -->|One| D[Result 1]\nC -->|Two| E[Result 2]\n
      \n

      Code Snippet

      \n

      The example highlights lines 2, line 5 to 7 and lines 9 to the end of the file.

      \n
      using System;\nusing Azure;\nusing Azure.Storage;\nusing Azure.Storage.Blobs;\n\nclass Program\n{\n    static void Main(string[] args)\n    {\n        // Define the connection string for the storage account\n        string connectionString = "DefaultEndpointsProtocol=https;AccountName=<your-account-name>;AccountKey=<your-account-key>;EndpointSuffix=core.windows.net";\n\n        // Create a new BlobServiceClient using the connection string\n        var blobServiceClient = new BlobServiceClient(connectionString);\n\n        // Create a new container\n        var container = blobServiceClient.CreateBlobContainer("mycontainer");\n\n        // Upload a file to the container\n        using (var fileStream = File.OpenRead("path/to/file.txt"))\n        {\n            container.UploadBlob("file.txt", fileStream);\n        }\n\n        // Download the file from the container\n        var downloadedBlob = container.GetBlobClient("file.txt").Download();\n        using (var fileStream = File.OpenWrite("path/to/downloaded-file.txt"))\n        {\n            downloadedBlob.Value.Content.CopyTo(fileStream);\n        }\n    }\n}\n

      Math Expressions

      \n

      This sentence uses $ delimiters to show math inline: \\(\\sqrt{3x-1}+(1+x)^2\\)

      \n

      The Cauchy-Schwarz Inequality

      \n

      \\(\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)\\)

      \n

      This expression uses \\$ to display a dollar sign: \\(\\sqrt{\\$4}\\)

      \n

      To split $100 in half, we calculate \\(100/2\\)

      \n

      Custom Syntax Highlighting

      \n
      resource storageAccount 'Microsoft.Storage/storageAccounts@2021-06-01' = {\n  name: 'hello'\n  // (...)\n}\n
      \n

      Tabs

      \n
      \n\n
      \n\n

      Content for Linux...

      \n
      \n\n
      \n\n

      The above tab group was created with the following syntax:

      \n
      # [Linux](#tab/linux)\n\nContent for Linux...\n\n# [Windows](#tab/windows)\n\nContent for Windows...\n\n---\n
      \n

      Tabs are indicated by using a specific link syntax within a Markdown header. The syntax can be described as follows:

      \n
      # [Tab Display Name](#tab/tab-id)\n
      \n

      A tab starts with a Markdown header, #, and is followed by a Markdown link [](). The text of the link will become the text of the tab header, displayed to the customer. In order for the header to be recognized as a tab, the link itself must start with #tab/ and be followed by an ID representing the content of the tab. The ID is used to sync all same-ID tabs across the page. Using the above example, when a user selects a tab with the link #tab/windows, all tabs with the link #tab/windows on the page will be selected.

      \n

      Dependent tabs

      \n

      It'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:

      \n
      \n\n
      \n\n

      .NET content for Linux...

      \n
      \n\n\n\n\n
      \n\n

      Notice how changing the Linux/Windows selection above changes the content in the .NET and TypeScript tabs. This is because the tab group defines two versions for each .NET and TypeScript, where the Windows/Linux selection above determines which version is shown for .NET/TypeScript. Here's the markup that shows how this is done:

      \n
      # [.NET](#tab/dotnet/linux)\n\n.NET content for Linux...\n\n# [.NET](#tab/dotnet/windows)\n\n.NET content for Windows...\n\n# [TypeScript](#tab/typescript/linux)\n\nTypeScript content for Linux...\n\n# [TypeScript](#tab/typescript/windows)\n\nTypeScript content for Windows...\n\n# [REST API](#tab/rest)\n\nREST API content, independent of platform...\n\n---\n
      \n

      Details

      \n
      \nDemo\n
      root@server# apt-get install nano\n
      \n
      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/articles/markdown.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "articles/markdown.md", - "documentation": { - "remote": { - "path": "samples/seed/articles/markdown.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Markdown

      ", - "title": "Markdown", - "wordCount": 587.0, - "_key": "articles/markdown.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "articles/markdown.html", - "_rel": "../", - "_tocKey": "~/articles/toc.yml", - "_tocPath": "articles/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/articles/markdown.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/seed.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/seed.pdf.verified.json deleted file mode 100644 index 76ef8a3510b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/seed.pdf.verified.json +++ /dev/null @@ -1,353 +0,0 @@ -{ - "NumberOfPages": 19, - "Pages": [ - { - "Number": 1, - "Text": "1 / 19DOCFX PDF SAMPLE", - "Links": [] - }, - { - "Number": 2, - "Text": "Table of ContentsGetting Started with docfx3Engineering DocsSection 1Engineering Guidelines5C# Coding Standards8Markdown15Microsoft Docs", - "Links": [ - { - "Uri": "https://docs.microsoft.com/en-us/" - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 3, - "NumberOfImages": 1, - "Text": "3 / 19Getting Started with docfxGetting StartedThis is a seed.", - "Links": [ - { - "Uri": "" - }, - { - "Uri": "" - } - ] - }, - { - "Number": 4, - "Text": "4 / 19docfx 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 / 19Engineering 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 / 19NustacheYamlDotNetCode 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 / 19The 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": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 8, - "Text": "8 / 19C# 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" - }, - { - "Uri": "http://msdn.microsoft.com/en-us/library/ms229042.aspx" - }, - { - "Uri": "http://msdn.microsoft.com/en-us/library/ms229042.aspx" - }, - { - "Uri": "http://www.jetbrains.com/resharper/" - }, - { - "Uri": "http://www.jetbrains.com/resharper/" - }, - { - "Uri": "http://www.jetbrains.com/resharper/" - }, - { - "Uri": "http://stylecop.codeplex.com/" - }, - { - "Uri": "http://stylecop.codeplex.com/" - }, - { - "Uri": "http://stylecop.codeplex.com/" - }, - { - "Uri": "http://codebox/SDLFxCop" - }, - { - "Uri": "http://codebox/SDLFxCop" - }, - { - "Uri": "http://codebox/SDLFxCop" - }, - { - "Uri": "http://toolbox/22561" - }, - { - "Uri": "http://toolbox/22561" - }, - { - "Uri": "http://toolbox/22561" - } - ] - }, - { - "Number": 9, - "Text": "9 / 19daily 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 / 19DO 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" - }, - { - "Uri": "http://msdn.microsoft.com/en-us/library/ms229043.aspx" - }, - { - "Uri": "http://msdn.microsoft.com/en-us/library/ms229043.aspx" - } - ] - }, - { - "Number": 11, - "Text": "11 / 19DO 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 / 19Unit 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 / 19the 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 / 19For functional tests it is reasonable to disable parallel tests.", - "Links": [] - }, - { - "Number": 15, - "Text": "15 / 19MarkdownMarkdown\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/" - }, - { - "Uri": "https://daringfireball.net/projects/markdown/" - }, - { - "Uri": "https://daringfireball.net/projects/markdown/" - }, - { - "Uri": "https://commonmark.org/" - }, - { - "Uri": "https://commonmark.org/" - }, - { - "Uri": "https://commonmark.org/" - }, - { - "Uri": "https://github.com/xoofx/markdig" - }, - { - "Uri": "https://github.com/xoofx/markdig" - }, - { - "Uri": "https://github.com/xoofx/markdig" - }, - { - "Goto": { - "PageNumber": 17, - "Coordinates": { - "Left": 28, - "Top": 211.24994 - } - } - } - ] - }, - { - "Number": 16, - "NumberOfImages": 1, - "Text": "16 / 19ImageMermaid 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" - }, - { - "Uri": "https://learn.microsoft.com/en-us/media/learn/not-found/learn-not-found-light-mode.png?branch=main" - } - ] - }, - { - "Number": 17, - "Text": "17 / 19Math 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 / 19Custom 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": { - "PageNumber": 18, - "Coordinates": { - "Left": 28, - "Top": 574.99994 - } - } - } - ] - }, - { - "Number": 19, - "Text": "19 / 19It'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": { - "PageNumber": 19, - "Coordinates": { - "Left": 28, - "Top": 684.49994 - } - } - } - ] - } - ], - "Bookmarks": [ - { - "Title": "Getting Started with docfx", - "Children": [], - "Destination": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Engineering Docs", - "Children": [ - { - "Title": "Section 1", - "Children": [], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Engineering Guidelines", - "Children": [], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "C# Coding Standards", - "Children": [], - "Destination": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Markdown", - "Children": [], - "Destination": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Microsoft Docs", - "Children": [], - "Uri": "https://docs.microsoft.com/en-us/" - } - ] -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/toc.html.view.verified.json deleted file mode 100644 index a18bd1cceaf..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/toc.html.view.verified.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "order": 100.0, - "items": [ - { - "name": "Getting Started with docfx", - "href": "docfx_getting_started.html", - "topicHref": "docfx_getting_started.html", - "tocHref": null, - "level": 2.0, - "items": [], - "leaf": true - }, - { - "name": "Engineering Docs", - "items": [ - { - "name": "Section 1", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Engineering Guidelines", - "href": "engineering_guidelines.html", - "topicHref": "engineering_guidelines.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "C# Coding Standards", - "href": "csharp_coding_standards.html", - "topicHref": "csharp_coding_standards.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "expanded": true, - "topicHref": null, - "tocHref": null, - "level": 2.0 - }, - { - "name": "Markdown", - "href": "markdown.html", - "topicHref": "markdown.html", - "tocHref": null, - "level": 2.0, - "items": [], - "leaf": true - }, - { - "name": "Microsoft Docs", - "href": "https://docs.microsoft.com/en-us/", - "topicHref": "https://docs.microsoft.com/en-us/", - "tocHref": null, - "level": 2.0, - "items": [], - "leaf": true - } - ], - "pdfFileName": "seed.pdf", - "pdfCoverPage": "pdf/cover.html", - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "articles/toc.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "articles/toc.html", - "_rel": "../", - "_tocKey": "~/articles/toc.yml", - "_tocPath": "articles/toc.html", - "_tocRel": "toc.html", - "topicHref": null, - "tocHref": null, - "name": null, - "level": 1.0, - "leaf": false, - "title": "Table of Content", - "_disableToc": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/toc.json.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/toc.json.view.verified.json deleted file mode 100644 index 9ad07a0f645..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/toc.json.view.verified.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "content": "{\"order\":100,\"items\":[{\"name\":\"Getting Started with docfx\",\"href\":\"docfx_getting_started.html\",\"topicHref\":\"docfx_getting_started.html\"},{\"name\":\"Engineering Docs\",\"items\":[{\"name\":\"Section 1\"},{\"name\":\"Engineering Guidelines\",\"href\":\"engineering_guidelines.html\",\"topicHref\":\"engineering_guidelines.html\"},{\"name\":\"C# Coding Standards\",\"href\":\"csharp_coding_standards.html\",\"topicHref\":\"csharp_coding_standards.html\"}],\"expanded\":true},{\"name\":\"Markdown\",\"href\":\"markdown.html\",\"topicHref\":\"markdown.html\"},{\"name\":\"Microsoft Docs\",\"href\":\"https://docs.microsoft.com/en-us/\",\"topicHref\":\"https://docs.microsoft.com/en-us/\"}],\"pdfFileName\":\"seed.pdf\",\"pdfCoverPage\":\"pdf/cover.html\",\"pdf\":true,\"pdfTocPage\":true}" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/toc.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/toc.verified.json deleted file mode 100644 index 9d5ff1c353a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/toc.verified.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "order": 100, - "items": [ - { - "name": "Getting Started with docfx", - "href": "docfx_getting_started.html", - "topicHref": "docfx_getting_started.html" - }, - { - "name": "Engineering Docs", - "items": [ - { - "name": "Section 1" - }, - { - "name": "Engineering Guidelines", - "href": "engineering_guidelines.html", - "topicHref": "engineering_guidelines.html" - }, - { - "name": "C# Coding Standards", - "href": "csharp_coding_standards.html", - "topicHref": "csharp_coding_standards.html" - } - ], - "expanded": true - }, - { - "name": "Markdown", - "href": "markdown.html", - "topicHref": "markdown.html" - }, - { - "name": "Microsoft Docs", - "href": "https://docs.microsoft.com/en-us/", - "topicHref": "https://docs.microsoft.com/en-us/" - } - ], - "pdfFileName": "seed.pdf", - "pdfCoverPage": "pdf/cover.html", - "pdf": true, - "pdfTocPage": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/index.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/index.html.view.verified.json deleted file mode 100644 index 4d579d781a0..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/index.html.view.verified.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "conceptual": "\n

      Description

      \n

      This is a sample docfx documentation project. It contains .NET source code and markdown files.\ndocfx.json is the configuration file for running docfx.\ndocfx will generate a static website as similar to http://docascode.github.io/docfx-seed.

      \n

      How to run

      \n

      Under Windows

      \n
        \n
      • Download and unzip docfx.zip to run docfx.exe directly!
      • \n
      • Run docfx under current repo! Website will be generated under _site folder.
      • \n
      • Run any web hosting tool to host _site folder, e.g. docfx serve _site.
      • \n
      \n

      Cross platform and use dnx

      \n

      As a prerequisite, you will need to install DNVM and DNX.\n###Quick Start

      \n
        \n
      • dnvm upgrade to get the latest dnvm.

        \n
      • \n
      • Add feed https://www.myget.org/F/aspnetrelease/api/v2/ to Nuget.config

        \n
        \n

        For Windows, the nuget config file is %AppData%\\NuGet\\NuGet.config.

        \n
        \n
        \n

        For Linux/OSX, the nuget config file is ~/.config/NuGet/NuGet.config.

        \n
        \n
        \n
      • \n
      • dnu commands install docfx to install docfx as a command

        \n
      • \n
      • Run docfx under current repo! Website will be generated under _site folder.

        \n
      • \n
      • Run any web hosting tool to host _site folder, e.g. docfx serve _site.

        \n
      • \n
      \n

      Further information about docfx

      \n

      docfx is a tool to generate documentation towards .NET source code and markdown files. Please refer to docfx to get start. The docfx website itself is generated by docfx!

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/index.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "index.md", - "documentation": { - "remote": { - "path": "samples/seed/index.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      docfx-seed

      ", - "_appLogoUrl": "https://github.com/dotnet/docfx", - "_disableNewTab": true, - "_lang": "zh-CN", - "_layout": "landing", - "title": "docfx-seed", - "wordCount": 186.0, - "_key": "index.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "toc.html", - "_path": "index.html", - "_rel": "", - "_tocKey": "~/toc.yml", - "_tocPath": "toc.html", - "_tocRel": "toc.html", - "_disableToc": true, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/index.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/index.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/index.verified.json deleted file mode 100644 index cb817c50b01..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/index.verified.json +++ /dev/null @@ -1,872 +0,0 @@ -{ - "api/BuildFromAssembly.Class1.html": { - "href": "api/BuildFromAssembly.Class1.html", - "title": "Class Class1 | docfx seed website", - "keywords": "Class Class1 Namespace BuildFromAssembly Assembly BuildFromAssembly.dll This is a test class. public class Class1 Inheritance object Class1 Inherited Members object.GetType() object.MemberwiseClone() object.ToString() object.Equals(object) object.Equals(object, object) object.ReferenceEquals(object, object) object.GetHashCode() Constructors Class1() public Class1() Methods HelloWorld() Hello World. public static void HelloWorld()" - }, - "api/BuildFromAssembly.Issue5432.html": { - "href": "api/BuildFromAssembly.Issue5432.html", - "title": "Struct Issue5432 | docfx seed website", - "keywords": "Struct Issue5432 Namespace BuildFromAssembly Assembly BuildFromAssembly.dll public struct Issue5432 Inherited Members ValueType.Equals(object) ValueType.GetHashCode() ValueType.ToString() object.GetType() object.Equals(object, object) object.ReferenceEquals(object, object) Properties Name public string Name { get; } Property Value string" - }, - "api/BuildFromAssembly.html": { - "href": "api/BuildFromAssembly.html", - "title": "Namespace BuildFromAssembly | docfx seed website", - "keywords": "Namespace BuildFromAssembly Classes Class1 This is a test class. Structs Issue5432" - }, - "api/BuildFromCSharpSourceCode.CSharp.html": { - "href": "api/BuildFromCSharpSourceCode.CSharp.html", - "title": "Class CSharp | docfx seed website", - "keywords": "Class CSharp Namespace BuildFromCSharpSourceCode public class CSharp Inheritance object CSharp Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods Main(string[]) public static void Main(string[] args) Parameters args string[]" - }, - "api/BuildFromCSharpSourceCode.html": { - "href": "api/BuildFromCSharpSourceCode.html", - "title": "Namespace BuildFromCSharpSourceCode | docfx seed website", - "keywords": "Namespace BuildFromCSharpSourceCode Classes CSharp" - }, - "api/BuildFromProject.Class1.IIssue8948.html": { - "href": "api/BuildFromProject.Class1.IIssue8948.html", - "title": "Interface Class1.IIssue8948 | docfx seed website", - "keywords": "Interface Class1.IIssue8948 Namespace BuildFromProject Assembly BuildFromProject.dll public interface Class1.IIssue8948 Methods DoNothing() Does nothing with generic type T. void DoNothing() Type Parameters T A generic type." - }, - "api/BuildFromProject.Class1.Issue8665.html": { - "href": "api/BuildFromProject.Class1.Issue8665.html", - "title": "Class Class1.Issue8665 | docfx seed website", - "keywords": "Class Class1.Issue8665 Namespace BuildFromProject Assembly BuildFromProject.dll public class Class1.Issue8665 Inheritance object Class1.Issue8665 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors Issue8665() public Issue8665() Issue8665(int) public Issue8665(int foo) Parameters foo int Issue8665(int, char) public Issue8665(int foo, char bar) Parameters foo int bar char Issue8665(int, char, string) public Issue8665(int foo, char bar, string baz) Parameters foo int bar char baz string Properties Bar public char Bar { get; } Property Value char Baz public string Baz { get; } Property Value string Foo public int Foo { get; } Property Value int" - }, - "api/BuildFromProject.Class1.Issue8696Attribute.html": { - "href": "api/BuildFromProject.Class1.Issue8696Attribute.html", - "title": "Class Class1.Issue8696Attribute | docfx seed website", - "keywords": "Class Class1.Issue8696Attribute Namespace BuildFromProject Assembly BuildFromProject.dll public class Class1.Issue8696Attribute : Attribute Inheritance object Attribute Class1.Issue8696Attribute Inherited Members Attribute.Equals(object) Attribute.GetCustomAttribute(Assembly, Type) Attribute.GetCustomAttribute(Assembly, Type, bool) Attribute.GetCustomAttribute(MemberInfo, Type) Attribute.GetCustomAttribute(MemberInfo, Type, bool) Attribute.GetCustomAttribute(Module, Type) Attribute.GetCustomAttribute(Module, Type, bool) Attribute.GetCustomAttribute(ParameterInfo, Type) Attribute.GetCustomAttribute(ParameterInfo, Type, bool) Attribute.GetCustomAttributes(Assembly) Attribute.GetCustomAttributes(Assembly, bool) Attribute.GetCustomAttributes(Assembly, Type) Attribute.GetCustomAttributes(Assembly, Type, bool) Attribute.GetCustomAttributes(MemberInfo) Attribute.GetCustomAttributes(MemberInfo, bool) Attribute.GetCustomAttributes(MemberInfo, Type) Attribute.GetCustomAttributes(MemberInfo, Type, bool) Attribute.GetCustomAttributes(Module) Attribute.GetCustomAttributes(Module, bool) Attribute.GetCustomAttributes(Module, Type) Attribute.GetCustomAttributes(Module, Type, bool) Attribute.GetCustomAttributes(ParameterInfo) Attribute.GetCustomAttributes(ParameterInfo, bool) Attribute.GetCustomAttributes(ParameterInfo, Type) Attribute.GetCustomAttributes(ParameterInfo, Type, bool) Attribute.GetHashCode() Attribute.IsDefaultAttribute() Attribute.IsDefined(Assembly, Type) Attribute.IsDefined(Assembly, Type, bool) Attribute.IsDefined(MemberInfo, Type) Attribute.IsDefined(MemberInfo, Type, bool) Attribute.IsDefined(Module, Type) Attribute.IsDefined(Module, Type, bool) Attribute.IsDefined(ParameterInfo, Type) Attribute.IsDefined(ParameterInfo, Type, bool) Attribute.Match(object) Attribute.TypeId object.Equals(object, object) object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors Issue8696Attribute(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) Parameters description string boundsMin int boundsMax int validGameModes string[] hasMultipleSelections bool enumType Type" - }, - "api/BuildFromProject.Class1.Issue8948.html": { - "href": "api/BuildFromProject.Class1.Issue8948.html", - "title": "Class Class1.Issue8948 | docfx seed website", - "keywords": "Class Class1.Issue8948 Namespace BuildFromProject Assembly BuildFromProject.dll public class Class1.Issue8948 : Class1.IIssue8948 Inheritance object Class1.Issue8948 Implements Class1.IIssue8948 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods DoNothing() Does nothing with generic type T. public void DoNothing() Type Parameters T A generic type." - }, - "api/BuildFromProject.Class1.Issue9260.html": { - "href": "api/BuildFromProject.Class1.Issue9260.html", - "title": "Enum Class1.Issue9260 | docfx seed website", - "keywords": "Enum Class1.Issue9260 Namespace BuildFromProject Assembly BuildFromProject.dll public enum Class1.Issue9260 Fields Value = 0 This is a regular enum value. [Obsolete] OldAndUnusedValue = 1 This is old and unused. You shouldn't use it anymore. [Obsolete(\"Use Value\")] OldAndUnusedValue2 = 2 This is old and unused. You shouldn't use it anymore." - }, - "api/BuildFromProject.Class1.Test-1.html": { - "href": "api/BuildFromProject.Class1.Test-1.html", - "title": "Class Class1.Test | docfx seed website", - "keywords": "Class Class1.Test Namespace BuildFromProject Assembly BuildFromProject.dll public class Class1.Test Type Parameters T Inheritance object Class1.Test Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString()" - }, - "api/BuildFromProject.Class1.html": { - "href": "api/BuildFromProject.Class1.html", - "title": "Class Class1 | docfx seed website", - "keywords": "Class Class1 Namespace BuildFromProject Assembly BuildFromProject.dll public class Class1 : IClass1 Inheritance object Class1 Implements IClass1 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods Issue1651() Pricing models are used to calculate theoretical option values 1Black Scholes 2Black76 3Black76Fut 4Equity Tree 5Variance Swap 6Dividend Forecast public void Issue1651() Issue1887() IConfiguration related helper and extension routines. public void Issue1887() Issue2623() public void Issue2623() Examples MyClass myClass = new MyClass(); void Update() { myClass.Execute(); } Remarks For example: MyClass myClass = new MyClass(); void Update() { myClass.Execute(); } Issue2723() public void Issue2723() Remarks Note This is a . & \" ' Inline . link for (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() Examples 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; } Remarks void Update() { myClass.Execute(); } Issue4392() public void Issue4392() Remarks @\"\\\\?\\\" @\"\\\\?\\\" Issue7484() public void Issue7484() Remarks There's really no reason to not believe that this class can test things. Term Description A Term A Description Bee Term Bee Description Issue8764() public void Issue8764() where T : unmanaged Type Parameters T Issue896() Test public void Issue896() See Also Class1.Test Class1 Issue9216() Calculates the determinant of a 3-dimensional matrix: \\(A = \\begin{vmatrix} a_{11} & a_{12} & a_{13} \\\\ a_{21} & a_{22} & a_{23} \\\\ a_{31} & a_{32} & a_{33} \\end{vmatrix}\\) Returns the smallest value: \\(\\left\\{\\begin{matrix}a, aa\\\\ \\end{matrix} \\right.\\) public static double Issue9216() Returns double XmlCommentIncludeTag() This method should do something... public void XmlCommentIncludeTag() Remarks This is remarks." - }, - "api/BuildFromProject.Dog.html": { - "href": "api/BuildFromProject.Dog.html", - "title": "Class Dog | docfx seed website", - "keywords": "Class Dog Namespace BuildFromProject Assembly BuildFromProject.dll Class representing a dog. public class Dog Inheritance object Dog Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors Dog(string, int) Constructor. public Dog(string name, int age) Parameters name string Name of the dog. age int Age of the dog. Properties Age Age of the dog. public int Age { get; } Property Value int Name Name of the dog. public string Name { get; } Property Value string" - }, - "api/BuildFromProject.IInheritdoc.html": { - "href": "api/BuildFromProject.IInheritdoc.html", - "title": "Interface IInheritdoc | docfx seed website", - "keywords": "Interface IInheritdoc Namespace BuildFromProject Assembly BuildFromProject.dll public interface IInheritdoc Methods Issue7629() This method should do something... void Issue7629()" - }, - "api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html": { - "href": "api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "title": "Class Inheritdoc.Issue6366.Class1 | docfx seed website", - "keywords": "Class Inheritdoc.Issue6366.Class1 Namespace BuildFromProject Assembly BuildFromProject.dll public abstract class Inheritdoc.Issue6366.Class1 Type Parameters T Inheritance object Inheritdoc.Issue6366.Class1 Derived Inheritdoc.Issue6366.Class2 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods TestMethod1(T, int) This text inherited. public abstract T TestMethod1(T parm1, int parm2) Parameters parm1 T This text NOT inherited. parm2 int This text inherited. Returns T This text inherited." - }, - "api/BuildFromProject.Inheritdoc.Issue6366.Class2.html": { - "href": "api/BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "title": "Class Inheritdoc.Issue6366.Class2 | docfx seed website", - "keywords": "Class Inheritdoc.Issue6366.Class2 Namespace BuildFromProject Assembly BuildFromProject.dll public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1 Inheritance object Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods TestMethod1(bool, int) This text inherited. public override bool TestMethod1(bool parm1, int parm2) Parameters parm1 bool This text NOT inherited. parm2 int This text inherited. Returns bool This text inherited." - }, - "api/BuildFromProject.Inheritdoc.Issue6366.html": { - "href": "api/BuildFromProject.Inheritdoc.Issue6366.html", - "title": "Class Inheritdoc.Issue6366 | docfx seed website", - "keywords": "Class Inheritdoc.Issue6366 Namespace BuildFromProject Assembly BuildFromProject.dll public class Inheritdoc.Issue6366 Inheritance object Inheritdoc.Issue6366 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString()" - }, - "api/BuildFromProject.Inheritdoc.Issue7035.html": { - "href": "api/BuildFromProject.Inheritdoc.Issue7035.html", - "title": "Class Inheritdoc.Issue7035 | docfx seed website", - "keywords": "Class Inheritdoc.Issue7035 Namespace BuildFromProject Assembly BuildFromProject.dll public class Inheritdoc.Issue7035 Inheritance object Inheritdoc.Issue7035 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods A() public void A() B() public void B()" - }, - "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." - }, - "api/BuildFromProject.Inheritdoc.Issue8101.html": { - "href": "api/BuildFromProject.Inheritdoc.Issue8101.html", - "title": "Class Inheritdoc.Issue8101 | docfx seed website", - "keywords": "Class Inheritdoc.Issue8101 Namespace BuildFromProject Assembly BuildFromProject.dll public class Inheritdoc.Issue8101 Inheritance object Inheritdoc.Issue8101 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods Tween(int, int, float, Action) Create a new tween. public static object Tween(int from, int to, float duration, Action onChange) Parameters from int The starting value. to int The end value. duration float Total tween duration in seconds. onChange Action A callback that will be invoked every time the tween value changes. Returns object The newly created tween instance. Tween(float, float, float, Action) Create a new tween. public static object Tween(float from, float to, float duration, Action onChange) Parameters from float The starting value. to float The end value. duration float Total tween duration in seconds. onChange Action A callback that will be invoked every time the tween value changes. Returns object The newly created tween instance." - }, - "api/BuildFromProject.Inheritdoc.Issue8129.html": { - "href": "api/BuildFromProject.Inheritdoc.Issue8129.html", - "title": "Struct Inheritdoc.Issue8129 | docfx seed website", - "keywords": "Struct Inheritdoc.Issue8129 Namespace BuildFromProject Assembly BuildFromProject.dll public struct Inheritdoc.Issue8129 Inherited Members ValueType.Equals(object) ValueType.GetHashCode() ValueType.ToString() object.Equals(object, object) object.GetType() object.ReferenceEquals(object, object) Constructors Issue8129(string) public Issue8129(string foo) Parameters foo string" - }, - "api/BuildFromProject.Inheritdoc.html": { - "href": "api/BuildFromProject.Inheritdoc.html", - "title": "Class Inheritdoc | docfx seed website", - "keywords": "Class Inheritdoc Namespace BuildFromProject Assembly BuildFromProject.dll public class Inheritdoc : IInheritdoc, IDisposable Inheritance object Inheritdoc Implements IInheritdoc IDisposable Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods Dispose() Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. public void Dispose() Issue7628() This method should do something... public void Issue7628() Issue7629() This method should do something... public void Issue7629()" - }, - "api/BuildFromProject.Issue8540.A.A.html": { - "href": "api/BuildFromProject.Issue8540.A.A.html", - "title": "Class A | docfx seed website", - "keywords": "Class A Namespace BuildFromProject.Issue8540.A Assembly BuildFromProject.dll public class A Inheritance object A Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString()" - }, - "api/BuildFromProject.Issue8540.A.html": { - "href": "api/BuildFromProject.Issue8540.A.html", - "title": "Namespace BuildFromProject.Issue8540.A | docfx seed website", - "keywords": "Namespace BuildFromProject.Issue8540.A Classes A" - }, - "api/BuildFromProject.Issue8540.B.B.html": { - "href": "api/BuildFromProject.Issue8540.B.B.html", - "title": "Class B | docfx seed website", - "keywords": "Class B Namespace BuildFromProject.Issue8540.B Assembly BuildFromProject.dll public class B Inheritance object B Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString()" - }, - "api/BuildFromProject.Issue8540.B.html": { - "href": "api/BuildFromProject.Issue8540.B.html", - "title": "Namespace BuildFromProject.Issue8540.B | docfx seed website", - "keywords": "Namespace BuildFromProject.Issue8540.B Classes B" - }, - "api/BuildFromProject.Issue8540.html": { - "href": "api/BuildFromProject.Issue8540.html", - "title": "Namespace BuildFromProject.Issue8540 | docfx seed website", - "keywords": "Namespace BuildFromProject.Issue8540 Namespaces BuildFromProject.Issue8540.A BuildFromProject.Issue8540.B" - }, - "api/BuildFromProject.Issue8725.html": { - "href": "api/BuildFromProject.Issue8725.html", - "title": "Class Issue8725 | docfx seed website", - "keywords": "Class Issue8725 Namespace BuildFromProject Assembly BuildFromProject.dll A nice class public class Issue8725 Inheritance object Issue8725 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods MoreOperations() Another nice operation public void MoreOperations() MyOperation() A nice operation public void MyOperation() See Also Class1" - }, - "api/BuildFromProject.html": { - "href": "api/BuildFromProject.html", - "title": "Namespace BuildFromProject | docfx seed website", - "keywords": "Namespace BuildFromProject Namespaces BuildFromProject.Issue8540 Classes Class1 Class1.Issue8665 Class1.Issue8696Attribute Class1.Issue8948 Class1.Test Dog Class representing a dog. Inheritdoc Inheritdoc.Issue6366 Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2 Inheritdoc.Issue7035 Inheritdoc.Issue7484 This is a test class to have something for DocFX to document. Inheritdoc.Issue8101 Issue8725 A nice class Structs Inheritdoc.Issue8129 Interfaces Class1.IIssue8948 IInheritdoc Enums Class1.Issue9260" - }, - "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" - }, - "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" - }, - "api/BuildFromVBSourceCode.html": { - "href": "api/BuildFromVBSourceCode.html", - "title": "Namespace BuildFromVBSourceCode | docfx seed website", - "keywords": "Namespace BuildFromVBSourceCode Classes BaseClass1 This is the BaseClass Class1 This is summary from vb class..." - }, - "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" - }, - "api/CatLibrary.CatException-1.html": { - "href": "api/CatLibrary.CatException-1.html", - "title": "Class CatException | docfx seed website", - "keywords": "Class CatException Namespace CatLibrary Assembly CatLibrary.dll public class CatException : Exception, ISerializable Type Parameters T Inheritance object Exception CatException Implements ISerializable Inherited Members Exception.GetBaseException() Exception.GetObjectData(SerializationInfo, StreamingContext) Exception.GetType() Exception.ToString() Exception.Data Exception.HelpLink Exception.HResult Exception.InnerException Exception.Message Exception.Source Exception.StackTrace Exception.TargetSite Exception.SerializeObjectState object.Equals(object) object.Equals(object, object) object.GetHashCode() object.MemberwiseClone() object.ReferenceEquals(object, object)" - }, - "api/CatLibrary.Complex-2.html": { - "href": "api/CatLibrary.Complex-2.html", - "title": "Class Complex | docfx seed website", - "keywords": "Class Complex Namespace CatLibrary Assembly CatLibrary.dll public class Complex Type Parameters T J Inheritance object Complex Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString()" - }, - "api/CatLibrary.Core.ContainersRefType.ColorType.html": { - "href": "api/CatLibrary.Core.ContainersRefType.ColorType.html", - "title": "Enum ContainersRefType.ColorType | docfx seed website", - "keywords": "Enum ContainersRefType.ColorType Namespace CatLibrary.Core Assembly CatLibrary.Core.dll Enumeration ColorType public enum ContainersRefType.ColorType Fields Red = 0 red Blue = 1 blue Yellow = 2 yellow" - }, - "api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html": { - "href": "api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "title": "Class ContainersRefType.ContainersRefTypeChild | docfx seed website", - "keywords": "Class ContainersRefType.ContainersRefTypeChild Namespace CatLibrary.Core Assembly CatLibrary.Core.dll public class ContainersRefType.ContainersRefTypeChild Inheritance object ContainersRefType.ContainersRefTypeChild Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString()" - }, - "api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html": { - "href": "api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "title": "Interface ContainersRefType.ContainersRefTypeChildInterface | docfx seed website", - "keywords": "Interface ContainersRefType.ContainersRefTypeChildInterface Namespace CatLibrary.Core Assembly CatLibrary.Core.dll public interface ContainersRefType.ContainersRefTypeChildInterface" - }, - "api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html": { - "href": "api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "title": "Delegate ContainersRefType.ContainersRefTypeDelegate | docfx seed website", - "keywords": "Delegate ContainersRefType.ContainersRefTypeDelegate Namespace CatLibrary.Core Assembly CatLibrary.Core.dll Delegate ContainersRefTypeDelegate public delegate void ContainersRefType.ContainersRefTypeDelegate()" - }, - "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" - }, - "api/CatLibrary.Core.ExplicitLayoutClass.html": { - "href": "api/CatLibrary.Core.ExplicitLayoutClass.html", - "title": "Class ExplicitLayoutClass | docfx seed website", - "keywords": "Class ExplicitLayoutClass Namespace CatLibrary.Core Assembly CatLibrary.Core.dll public class ExplicitLayoutClass Inheritance object ExplicitLayoutClass Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString()" - }, - "api/CatLibrary.Core.Issue231.html": { - "href": "api/CatLibrary.Core.Issue231.html", - "title": "Class Issue231 | docfx seed website", - "keywords": "Class Issue231 Namespace CatLibrary.Core Assembly CatLibrary.dll public static class Issue231 Inheritance object Issue231 Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods Bar(ContainersRefType) public static void Bar(this ContainersRefType c) Parameters c ContainersRefType Foo(ContainersRefType) public static void Foo(this ContainersRefType c) Parameters c ContainersRefType" - }, - "api/CatLibrary.Core.html": { - "href": "api/CatLibrary.Core.html", - "title": "Namespace CatLibrary.Core | docfx seed website", - "keywords": "Namespace CatLibrary.Core Classes ContainersRefType.ContainersRefTypeChild ExplicitLayoutClass Issue231 Structs ContainersRefType Struct ContainersRefType Interfaces ContainersRefType.ContainersRefTypeChildInterface Enums ContainersRefType.ColorType Enumeration ColorType Delegates ContainersRefType.ContainersRefTypeDelegate Delegate ContainersRefTypeDelegate" - }, - "api/CatLibrary.FakeDelegate-1.html": { - "href": "api/CatLibrary.FakeDelegate-1.html", - "title": "Delegate FakeDelegate | docfx seed website", - "keywords": "Delegate FakeDelegate Namespace CatLibrary Assembly CatLibrary.dll Fake delegate public delegate int FakeDelegate(long num, string name, params object[] scores) Parameters num long Fake para name string Fake para scores object[] Optional Parameter. Returns int Return a fake number to confuse you. Type Parameters T Fake para" - }, - "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." - }, - "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" - }, - "api/CatLibrary.ICatExtension.html": { - "href": "api/CatLibrary.ICatExtension.html", - "title": "Class ICatExtension | docfx seed website", - "keywords": "Class ICatExtension 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." - }, - "api/CatLibrary.MRefDelegate-3.html": { - "href": "api/CatLibrary.MRefDelegate-3.html", - "title": "Delegate MRefDelegate | docfx seed website", - "keywords": "Delegate MRefDelegate Namespace CatLibrary Assembly CatLibrary.dll Generic delegate with many constrains. public delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable Parameters k K Type K. t T Type T. l L Type L. Type Parameters K Generic K. T Generic T. L Generic L." - }, - "api/CatLibrary.MRefNormalDelegate.html": { - "href": "api/CatLibrary.MRefNormalDelegate.html", - "title": "Delegate MRefNormalDelegate | docfx seed website", - "keywords": "Delegate MRefNormalDelegate Namespace CatLibrary Assembly CatLibrary.dll Delegate in the namespace public delegate void MRefNormalDelegate(List pics, out string name) Parameters pics List a name list of pictures. name string give out the needed name." - }, - "api/CatLibrary.Tom.html": { - "href": "api/CatLibrary.Tom.html", - "title": "Class Tom | docfx seed website", - "keywords": "Class Tom Namespace CatLibrary Assembly CatLibrary.dll Tom class is only inherit from Object. Not any member inside itself. public class Tom Inheritance object Tom Derived TomFromBaseClass Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Methods TomMethod(Complex, Tuple) This is a Tom Method with complex type as return public Complex TomMethod(Complex a, Tuple b) Parameters a Complex A complex input b Tuple Another complex input Returns Complex Complex TomFromBaseClass Exceptions NotImplementedException This is not implemented ArgumentException This is the exception to be thrown when implemented CatException This is the exception in current documentation" - }, - "api/CatLibrary.TomFromBaseClass.html": { - "href": "api/CatLibrary.TomFromBaseClass.html", - "title": "Class TomFromBaseClass | docfx seed website", - "keywords": "Class TomFromBaseClass Namespace CatLibrary Assembly CatLibrary.dll TomFromBaseClass inherits from @ public class TomFromBaseClass : Tom Inheritance object Tom TomFromBaseClass Inherited Members Tom.TomMethod(Complex, Tuple) object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors TomFromBaseClass(int) This is a #ctor with parameter public TomFromBaseClass(int k) Parameters k int" - }, - "api/CatLibrary.html": { - "href": "api/CatLibrary.html", - "title": "Namespace CatLibrary | docfx seed website", - "keywords": "Namespace CatLibrary Namespaces CatLibrary.Core Classes CatException 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 ICatExtension class Complex ICatExtension 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 Tom Tom class is only inherit from Object. Not any member inside itself. TomFromBaseClass TomFromBaseClass inherits from @ Interfaces IAnimal This is basic interface of all animal. ICat Cat's interface Delegates FakeDelegate Fake delegate MRefDelegate Generic delegate with many constrains. MRefNormalDelegate Delegate in the namespace" - }, - "api/MRef.Demo.Enumeration.ColorType.html": { - "href": "api/MRef.Demo.Enumeration.ColorType.html", - "title": "Enum ColorType | docfx seed website", - "keywords": "Enum ColorType Namespace MRef.Demo.Enumeration Assembly CatLibrary.dll Enumeration ColorType public enum ColorType Fields Red = 0 this color is red Blue = 1 blue like river Yellow = 2 yellow comes from desert Remarks Red/Blue/Yellow can become all color you want. See Also object" - }, - "api/MRef.Demo.Enumeration.html": { - "href": "api/MRef.Demo.Enumeration.html", - "title": "Namespace MRef.Demo.Enumeration | docfx seed website", - "keywords": "Namespace MRef.Demo.Enumeration Enums ColorType Enumeration ColorType" - }, - "apipage/BuildFromAssembly.Class1.html": { - "href": "apipage/BuildFromAssembly.Class1.html", - "title": "Class Class1 | docfx seed website", - "keywords": "Class Class1 Namespace BuildFromAssembly Assembly BuildFromAssembly.dll This is a test class. public class Class1 Inheritance object Class1 Inherited Members object.GetType() object.MemberwiseClone() object.ToString() object.Equals(object?) object.Equals(object?, object?) object.ReferenceEquals(object?, object?) object.GetHashCode() Constructors Class1() public Class1() Methods HelloWorld() Hello World. public static void HelloWorld()" - }, - "apipage/BuildFromAssembly.Issue5432.html": { - "href": "apipage/BuildFromAssembly.Issue5432.html", - "title": "Struct Issue5432 | docfx seed website", - "keywords": "Struct Issue5432 Namespace BuildFromAssembly Assembly BuildFromAssembly.dll public struct Issue5432 Inherited Members object.GetType() object.ToString() object.Equals(object?) object.Equals(object?, object?) object.ReferenceEquals(object?, object?) object.GetHashCode() Properties Name public string Name { get; } Property Value string" - }, - "apipage/BuildFromAssembly.html": { - "href": "apipage/BuildFromAssembly.html", - "title": "Namespace BuildFromAssembly | docfx seed website", - "keywords": "Namespace BuildFromAssembly Classes Class1 This is a test class. Structs Issue5432" - }, - "apipage/BuildFromCSharpSourceCode.CSharp.html": { - "href": "apipage/BuildFromCSharpSourceCode.CSharp.html", - "title": "Class CSharp | docfx seed website", - "keywords": "Class CSharp Namespace BuildFromCSharpSourceCode public class CSharp Inheritance object CSharp Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods Main(string[]) public static void Main(string[] args) Parameters args string[]" - }, - "apipage/BuildFromCSharpSourceCode.html": { - "href": "apipage/BuildFromCSharpSourceCode.html", - "title": "Namespace BuildFromCSharpSourceCode | docfx seed website", - "keywords": "Namespace BuildFromCSharpSourceCode Classes CSharp" - }, - "apipage/BuildFromProject.Class1.IIssue8948.html": { - "href": "apipage/BuildFromProject.Class1.IIssue8948.html", - "title": "Interface Class1.IIssue8948 | docfx seed website", - "keywords": "Interface Class1.IIssue8948 Preview DOCFX001: 'BuildFromProject.Class1.IIssue8948' is for evaluation purposes only and is subject to change or removal in future updates. Namespace BuildFromProject Assembly BuildFromProject.dll public interface Class1.IIssue8948 Methods DoNothing() Does nothing with generic type T. void DoNothing() Type Parameters T A generic type." - }, - "apipage/BuildFromProject.Class1.Issue8665.html": { - "href": "apipage/BuildFromProject.Class1.Issue8665.html", - "title": "Class Class1.Issue8665 | docfx seed website", - "keywords": "Class Class1.Issue8665 Preview DOCFX001: 'BuildFromProject.Class1.Issue8665' is for evaluation purposes only and is subject to change or removal in future updates. Namespace BuildFromProject Assembly BuildFromProject.dll public class Class1.Issue8665 Inheritance object Class1.Issue8665 Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Constructors Issue8665() public Issue8665() Issue8665(int) public Issue8665(int foo) Parameters foo int Issue8665(int, char) public Issue8665(int foo, char bar) Parameters foo int bar char Issue8665(int, char, string) public Issue8665(int foo, char bar, string baz) Parameters foo int bar char baz string Properties Bar public char Bar { get; } Property Value char Baz public string Baz { get; } Property Value string Foo public int Foo { get; } Property Value int" - }, - "apipage/BuildFromProject.Class1.Issue8696Attribute.html": { - "href": "apipage/BuildFromProject.Class1.Issue8696Attribute.html", - "title": "Class Class1.Issue8696Attribute | docfx seed website", - "keywords": "Class Class1.Issue8696Attribute Preview DOCFX001: 'BuildFromProject.Class1.Issue8696Attribute' is for evaluation purposes only and is subject to change or removal in future updates. Namespace BuildFromProject Assembly BuildFromProject.dll public class Class1.Issue8696Attribute : Attribute Inheritance object Attribute Class1.Issue8696Attribute Inherited Members Attribute.Equals(object?) Attribute.GetCustomAttribute(Assembly, Type) Attribute.GetCustomAttribute(Assembly, Type, bool) Attribute.GetCustomAttribute(MemberInfo, Type) Attribute.GetCustomAttribute(MemberInfo, Type, bool) Attribute.GetCustomAttribute(Module, Type) Attribute.GetCustomAttribute(Module, Type, bool) Attribute.GetCustomAttribute(ParameterInfo, Type) Attribute.GetCustomAttribute(ParameterInfo, Type, bool) Attribute.GetCustomAttributes(Assembly) Attribute.GetCustomAttributes(Assembly, bool) Attribute.GetCustomAttributes(Assembly, Type) Attribute.GetCustomAttributes(Assembly, Type, bool) Attribute.GetCustomAttributes(MemberInfo) Attribute.GetCustomAttributes(MemberInfo, bool) Attribute.GetCustomAttributes(MemberInfo, Type) Attribute.GetCustomAttributes(MemberInfo, Type, bool) Attribute.GetCustomAttributes(Module) Attribute.GetCustomAttributes(Module, bool) Attribute.GetCustomAttributes(Module, Type) Attribute.GetCustomAttributes(Module, Type, bool) Attribute.GetCustomAttributes(ParameterInfo) Attribute.GetCustomAttributes(ParameterInfo, bool) Attribute.GetCustomAttributes(ParameterInfo, Type) Attribute.GetCustomAttributes(ParameterInfo, Type, bool) Attribute.GetHashCode() Attribute.IsDefaultAttribute() Attribute.IsDefined(Assembly, Type) Attribute.IsDefined(Assembly, Type, bool) Attribute.IsDefined(MemberInfo, Type) Attribute.IsDefined(MemberInfo, Type, bool) Attribute.IsDefined(Module, Type) Attribute.IsDefined(Module, Type, bool) Attribute.IsDefined(ParameterInfo, Type) Attribute.IsDefined(ParameterInfo, Type, bool) Attribute.Match(object?) Attribute.TypeId object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Constructors Issue8696Attribute(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) Parameters description string? boundsMin int boundsMax int validGameModes string[]? hasMultipleSelections bool enumType Type?" - }, - "apipage/BuildFromProject.Class1.Issue8948.html": { - "href": "apipage/BuildFromProject.Class1.Issue8948.html", - "title": "Class Class1.Issue8948 | docfx seed website", - "keywords": "Class Class1.Issue8948 Preview DOCFX001: 'BuildFromProject.Class1.Issue8948' is for evaluation purposes only and is subject to change or removal in future updates. Namespace BuildFromProject Assembly BuildFromProject.dll public class Class1.Issue8948 : Class1.IIssue8948 Inheritance object Class1.Issue8948 Implements Class1.IIssue8948 Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods DoNothing() Does nothing with generic type T. public void DoNothing() Type Parameters T A generic type." - }, - "apipage/BuildFromProject.Class1.Issue9260.html": { - "href": "apipage/BuildFromProject.Class1.Issue9260.html", - "title": "Enum Class1.Issue9260 | docfx seed website", - "keywords": "Enum Class1.Issue9260 Preview DOCFX001: 'BuildFromProject.Class1.Issue9260' is for evaluation purposes only and is subject to change or removal in future updates. Namespace BuildFromProject Assembly BuildFromProject.dll public enum Class1.Issue9260 Fields Value = 0 This is a regular enum value. This is a remarks section. Very important remarks about Value go here. OldAndUnusedValue = 1 Deprecated This is old and unused. You shouldn't use it anymore. Don't use this, seriously! Use Value instead. OldAndUnusedValue2 = 2 Deprecated Use Value This is old and unused. You shouldn't use it anymore. Don't use this, seriously! Use Value instead." - }, - "apipage/BuildFromProject.Class1.Test-1.html": { - "href": "apipage/BuildFromProject.Class1.Test-1.html", - "title": "Class Class1.Test | docfx seed website", - "keywords": "Class Class1.Test Preview DOCFX001: 'BuildFromProject.Class1.Test ' is for evaluation purposes only and is subject to change or removal in future updates. Namespace BuildFromProject Assembly BuildFromProject.dll public class Class1.Test Type Parameters T Inheritance object Class1.Test Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString()" - }, - "apipage/BuildFromProject.Class1.html": { - "href": "apipage/BuildFromProject.Class1.html", - "title": "Class Class1 | docfx seed website", - "keywords": "Class Class1 Preview DOCFX001: 'BuildFromProject.Class1' is for evaluation purposes only and is subject to change or removal in future updates. Namespace BuildFromProject Assembly BuildFromProject.dll public class Class1 : IClass1 Inheritance object Class1 Implements IClass1 Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods Issue1651() Pricing models are used to calculate theoretical option values 1Black Scholes 2Black76 3Black76Fut 4Equity Tree 5Variance Swap 6Dividend Forecast public void Issue1651() Issue1887() Preview 'BuildFromProject.Class1.Issue1887()' is for evaluation purposes only and is subject to change or removal in future updates. IConfiguration related helper and extension routines. public void Issue1887() Issue2623() public void Issue2623() Examples MyClass myClass = new MyClass(); void Update() { myClass.Execute(); } Remarks For example: MyClass myClass = new MyClass(); void Update() { myClass.Execute(); } Issue2723() public void Issue2723() Remarks Note This is a . & \" ' Inline . link for (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() Examples 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; } Remarks void Update() { myClass.Execute(); } Issue4392() public void Issue4392() Remarks @\"\\\\?\\\" @\"\\\\?\\\" Issue7484() public void Issue7484() Remarks There's really no reason to not believe that this class can test things. Term Description A Term A Description Bee Term Bee Description Issue8764() public void Issue8764() where T : unmanaged Type Parameters T Issue896() Test public void Issue896() See Also Class1.Test Class1 Issue9216() Calculates the determinant of a 3-dimensional matrix: \\(A = \\begin{vmatrix} a_{11} & a_{12} & a_{13} \\\\ a_{21} & a_{22} & a_{23} \\\\ a_{31} & a_{32} & a_{33} \\end{vmatrix}\\) Returns the smallest value: \\(\\left\\{\\begin{matrix}a, aa\\\\ \\end{matrix} \\right.\\) public static double Issue9216() Returns double XmlCommentIncludeTag() This method should do something... public void XmlCommentIncludeTag() Remarks This is remarks." - }, - "apipage/BuildFromProject.Dog.html": { - "href": "apipage/BuildFromProject.Dog.html", - "title": "Class Dog | docfx seed website", - "keywords": "Class Dog Namespace BuildFromProject Assembly BuildFromProject.dll Class representing a dog. public class Dog Inheritance object Dog Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Constructors Dog(string, int) Constructor. public Dog(string name, int age) Parameters name string Name of the dog. age int Age of the dog. Properties Age Age of the dog. public int Age { get; } Property Value int Name Name of the dog. public string Name { get; } Property Value string" - }, - "apipage/BuildFromProject.IInheritdoc.html": { - "href": "apipage/BuildFromProject.IInheritdoc.html", - "title": "Interface IInheritdoc | docfx seed website", - "keywords": "Interface IInheritdoc Namespace BuildFromProject Assembly BuildFromProject.dll public interface IInheritdoc Methods Issue7629() This method should do something... void Issue7629()" - }, - "apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html": { - "href": "apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "title": "Class Inheritdoc.Issue6366.Class1 | docfx seed website", - "keywords": "Class Inheritdoc.Issue6366.Class1 Namespace BuildFromProject Assembly BuildFromProject.dll public abstract class Inheritdoc.Issue6366.Class1 Type Parameters T Inheritance object Inheritdoc.Issue6366.Class1 Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods TestMethod1(T, int) This text inherited. public abstract T TestMethod1(T parm1, int parm2) Parameters parm1 T This text NOT inherited. parm2 int This text inherited. Returns T This text inherited." - }, - "apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.html": { - "href": "apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "title": "Class Inheritdoc.Issue6366.Class2 | docfx seed website", - "keywords": "Class Inheritdoc.Issue6366.Class2 Namespace BuildFromProject Assembly BuildFromProject.dll public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1 Inheritance object Inheritdoc.Issue6366.Class1 Inheritdoc.Issue6366.Class2 Inherited Members Inheritdoc.Issue6366.Class1.TestMethod1(bool, int) object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods TestMethod1(bool, int) This text inherited. public override bool TestMethod1(bool parm1, int parm2) Parameters parm1 bool This text NOT inherited. parm2 int This text inherited. Returns bool This text inherited." - }, - "apipage/BuildFromProject.Inheritdoc.Issue6366.html": { - "href": "apipage/BuildFromProject.Inheritdoc.Issue6366.html", - "title": "Class Inheritdoc.Issue6366 | docfx seed website", - "keywords": "Class Inheritdoc.Issue6366 Namespace BuildFromProject Assembly BuildFromProject.dll public class Inheritdoc.Issue6366 Inheritance object Inheritdoc.Issue6366 Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString()" - }, - "apipage/BuildFromProject.Inheritdoc.Issue7035.html": { - "href": "apipage/BuildFromProject.Inheritdoc.Issue7035.html", - "title": "Class Inheritdoc.Issue7035 | docfx seed website", - "keywords": "Class Inheritdoc.Issue7035 Namespace BuildFromProject Assembly BuildFromProject.dll public class Inheritdoc.Issue7035 Inheritance object Inheritdoc.Issue7035 Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods A() public void A() B() public void B()" - }, - "apipage/BuildFromProject.Inheritdoc.Issue7484.html": { - "href": "apipage/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." - }, - "apipage/BuildFromProject.Inheritdoc.Issue8101.html": { - "href": "apipage/BuildFromProject.Inheritdoc.Issue8101.html", - "title": "Class Inheritdoc.Issue8101 | docfx seed website", - "keywords": "Class Inheritdoc.Issue8101 Namespace BuildFromProject Assembly BuildFromProject.dll public class Inheritdoc.Issue8101 Inheritance object Inheritdoc.Issue8101 Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods Tween(float, float, float, Action) Create a new tween. public static object Tween(float from, float to, float duration, Action onChange) Parameters from float The starting value. to float The end value. duration float Total tween duration in seconds. onChange Action A callback that will be invoked every time the tween value changes. Returns object The newly created tween instance. Tween(int, int, float, Action) Create a new tween. public static object Tween(int from, int to, float duration, Action onChange) Parameters from int The starting value. to int The end value. duration float Total tween duration in seconds. onChange Action A callback that will be invoked every time the tween value changes. Returns object The newly created tween instance." - }, - "apipage/BuildFromProject.Inheritdoc.Issue8129.html": { - "href": "apipage/BuildFromProject.Inheritdoc.Issue8129.html", - "title": "Struct Inheritdoc.Issue8129 | docfx seed website", - "keywords": "Struct Inheritdoc.Issue8129 Namespace BuildFromProject Assembly BuildFromProject.dll public struct Inheritdoc.Issue8129 Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.ReferenceEquals(object?, object?) object.ToString() Constructors Issue8129(string) public Issue8129(string foo) Parameters foo string" - }, - "apipage/BuildFromProject.Inheritdoc.html": { - "href": "apipage/BuildFromProject.Inheritdoc.html", - "title": "Class Inheritdoc | docfx seed website", - "keywords": "Class Inheritdoc Namespace BuildFromProject Assembly BuildFromProject.dll public class Inheritdoc : IInheritdoc, IDisposable Inheritance object Inheritdoc Implements IInheritdoc IDisposable Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods Dispose() Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. public void Dispose() Issue7628() This method should do something... public void Issue7628() Issue7629() This method should do something... public void Issue7629()" - }, - "apipage/BuildFromProject.Issue8540.A.A.html": { - "href": "apipage/BuildFromProject.Issue8540.A.A.html", - "title": "Class A | docfx seed website", - "keywords": "Class A Namespace BuildFromProject.Issue8540.A Assembly BuildFromProject.dll public class A Inheritance object A Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString()" - }, - "apipage/BuildFromProject.Issue8540.A.html": { - "href": "apipage/BuildFromProject.Issue8540.A.html", - "title": "Namespace BuildFromProject.Issue8540.A | docfx seed website", - "keywords": "Namespace BuildFromProject.Issue8540.A Classes A" - }, - "apipage/BuildFromProject.Issue8540.B.B.html": { - "href": "apipage/BuildFromProject.Issue8540.B.B.html", - "title": "Class B | docfx seed website", - "keywords": "Class B Namespace BuildFromProject.Issue8540.B Assembly BuildFromProject.dll public class B Inheritance object B Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString()" - }, - "apipage/BuildFromProject.Issue8540.B.html": { - "href": "apipage/BuildFromProject.Issue8540.B.html", - "title": "Namespace BuildFromProject.Issue8540.B | docfx seed website", - "keywords": "Namespace BuildFromProject.Issue8540.B Classes B" - }, - "apipage/BuildFromProject.Issue8540.html": { - "href": "apipage/BuildFromProject.Issue8540.html", - "title": "Namespace BuildFromProject.Issue8540 | docfx seed website", - "keywords": "Namespace BuildFromProject.Issue8540 Namespaces BuildFromProject.Issue8540.A BuildFromProject.Issue8540.B" - }, - "apipage/BuildFromProject.Issue8725.html": { - "href": "apipage/BuildFromProject.Issue8725.html", - "title": "Class Issue8725 | docfx seed website", - "keywords": "Class Issue8725 Namespace BuildFromProject Assembly BuildFromProject.dll A nice class public class Issue8725 Inheritance object Issue8725 Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods MoreOperations() Another nice operation public void MoreOperations() MyOperation() A nice operation public void MyOperation() See Also Class1" - }, - "apipage/BuildFromProject.html": { - "href": "apipage/BuildFromProject.html", - "title": "Namespace BuildFromProject | docfx seed website", - "keywords": "Namespace BuildFromProject Namespaces BuildFromProject.Issue8540 Classes Inheritdoc.Issue6366.Class1 Class1 Inheritdoc.Issue6366.Class2 Dog Class representing a dog. Inheritdoc Inheritdoc.Issue6366 Inheritdoc.Issue7035 Inheritdoc.Issue7484 This is a test class to have something for DocFX to document. Inheritdoc.Issue8101 Class1.Issue8665 Class1.Issue8696Attribute Issue8725 A nice class Class1.Issue8948 Class1.Test Structs Inheritdoc.Issue8129 Interfaces IInheritdoc Class1.IIssue8948 Enums Class1.Issue9260" - }, - "apipage/BuildFromVBSourceCode.BaseClass1.html": { - "href": "apipage/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" - }, - "apipage/BuildFromVBSourceCode.Class1.html": { - "href": "apipage/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 BaseClass1.WithDeclarationKeyword(Class1) 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 Deprecated This member is obsolete. [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" - }, - "apipage/BuildFromVBSourceCode.html": { - "href": "apipage/BuildFromVBSourceCode.html", - "title": "Namespace BuildFromVBSourceCode | docfx seed website", - "keywords": "Namespace BuildFromVBSourceCode Classes BaseClass1 This is the BaseClass Class1 This is summary from vb class..." - }, - "apipage/CatLibrary.Cat-2.html": { - "href": "apipage/CatLibrary.Cat-2.html", - "title": "Class Cat | docfx seed website", - "keywords": "Class Cat Deprecated 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 [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.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 Here's all the content you can see in this class. Constructors Cat() Default constructor. public Cat() Cat(T) Constructor with one generic parameter. public Cat(T ownType) Parameters ownType T This parameter type defined by class. 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. Fields isHealthy Deprecated Field with attribute. [ContextStatic] [NonSerialized] [Obsolete] public bool isHealthy Field Value bool Properties Age Deprecated Hint cat's age. [Obsolete] protected int Age { get; set; } Property Value int Name EII property. public string Name { get; } Property Value string 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; } Property Value int Methods CalculateFood(DateTime) It's a method with complex return type. public Dictionary> CalculateFood(DateTime date) Parameters date DateTime Date time to now. Returns Dictionary> It's a relationship map of different kind food. 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 ownEat Deprecated This event handler is deprecated. 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" - }, - "apipage/CatLibrary.CatException-1.html": { - "href": "apipage/CatLibrary.CatException-1.html", - "title": "Class CatException | docfx seed website", - "keywords": "Class CatException Namespace CatLibrary Assembly CatLibrary.dll public class CatException : Exception, ISerializable Type Parameters T Inheritance object Exception CatException Implements ISerializable Inherited Members Exception.GetBaseException() Exception.GetObjectData(SerializationInfo, StreamingContext) Exception.GetType() Exception.ToString() Exception.Data Exception.HelpLink Exception.HResult Exception.InnerException Exception.Message Exception.Source Exception.StackTrace Exception.TargetSite Exception.SerializeObjectState object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString()" - }, - "apipage/CatLibrary.Complex-2.html": { - "href": "apipage/CatLibrary.Complex-2.html", - "title": "Class Complex | docfx seed website", - "keywords": "Class Complex Namespace CatLibrary Assembly CatLibrary.dll public class Complex Type Parameters T J Inheritance object Complex Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString()" - }, - "apipage/CatLibrary.Core.ContainersRefType.ColorType.html": { - "href": "apipage/CatLibrary.Core.ContainersRefType.ColorType.html", - "title": "Enum ContainersRefType.ColorType | docfx seed website", - "keywords": "Enum ContainersRefType.ColorType Namespace CatLibrary.Core Assembly CatLibrary.Core.dll Enumeration ColorType public enum ContainersRefType.ColorType Fields Red = 0 red Blue = 1 blue Yellow = 2 yellow" - }, - "apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html": { - "href": "apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "title": "Class ContainersRefType.ContainersRefTypeChild | docfx seed website", - "keywords": "Class ContainersRefType.ContainersRefTypeChild Namespace CatLibrary.Core Assembly CatLibrary.Core.dll public class ContainersRefType.ContainersRefTypeChild Inheritance object ContainersRefType.ContainersRefTypeChild Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString()" - }, - "apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html": { - "href": "apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "title": "Interface ContainersRefType.ContainersRefTypeChildInterface | docfx seed website", - "keywords": "Interface ContainersRefType.ContainersRefTypeChildInterface Namespace CatLibrary.Core Assembly CatLibrary.Core.dll public interface ContainersRefType.ContainersRefTypeChildInterface" - }, - "apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html": { - "href": "apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "title": "Delegate ContainersRefType.ContainersRefTypeDelegate | docfx seed website", - "keywords": "Delegate ContainersRefType.ContainersRefTypeDelegate Namespace CatLibrary.Core Assembly CatLibrary.Core.dll Delegate ContainersRefTypeDelegate public delegate void ContainersRefType.ContainersRefTypeDelegate()" - }, - "apipage/CatLibrary.Core.ContainersRefType.html": { - "href": "apipage/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 object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.ReferenceEquals(object?, object?) object.ToString() 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 ContainersRefTypeEventHandler public event EventHandler ContainersRefTypeEventHandler Event Type EventHandler" - }, - "apipage/CatLibrary.Core.ExplicitLayoutClass.html": { - "href": "apipage/CatLibrary.Core.ExplicitLayoutClass.html", - "title": "Class ExplicitLayoutClass | docfx seed website", - "keywords": "Class ExplicitLayoutClass Namespace CatLibrary.Core Assembly CatLibrary.Core.dll public class ExplicitLayoutClass Inheritance object ExplicitLayoutClass Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString()" - }, - "apipage/CatLibrary.Core.Issue231.html": { - "href": "apipage/CatLibrary.Core.Issue231.html", - "title": "Class Issue231 | docfx seed website", - "keywords": "Class Issue231 Namespace CatLibrary.Core Assembly CatLibrary.dll, CatLibrary.Core.dll public static class Issue231 Inheritance object Issue231 Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods Bar(ContainersRefType) public static void Bar(this ContainersRefType c) Parameters c ContainersRefType Foo(ContainersRefType) public static void Foo(this ContainersRefType c) Parameters c ContainersRefType" - }, - "apipage/CatLibrary.Core.html": { - "href": "apipage/CatLibrary.Core.html", - "title": "Namespace CatLibrary.Core | docfx seed website", - "keywords": "Namespace CatLibrary.Core Classes ContainersRefType.ContainersRefTypeChild ExplicitLayoutClass Issue231 Issue231 Structs ContainersRefType Struct ContainersRefType Interfaces ContainersRefType.ContainersRefTypeChildInterface Enums ContainersRefType.ColorType Enumeration ColorType Delegates ContainersRefType.ContainersRefTypeDelegate Delegate ContainersRefTypeDelegate" - }, - "apipage/CatLibrary.FakeDelegate-1.html": { - "href": "apipage/CatLibrary.FakeDelegate-1.html", - "title": "Delegate FakeDelegate | docfx seed website", - "keywords": "Delegate FakeDelegate Namespace CatLibrary Assembly CatLibrary.dll Fake delegate public delegate int FakeDelegate(long num, string name, params object[] scores) Parameters num long Fake para name string Fake para scores object[] Optional Parameter. Returns int Return a fake number to confuse you. Type Parameters T Fake para" - }, - "apipage/CatLibrary.IAnimal.html": { - "href": "apipage/CatLibrary.IAnimal.html", - "title": "Interface IAnimal | docfx seed website", - "keywords": "Interface IAnimal Namespace CatLibrary Assembly CatLibrary.dll This is basic interface of all animal. public interface IAnimal Properties Name Name of Animal. string Name { get; } Property Value string this[int] Return specific number animal's name. string this[int index] { get; } Property Value string Methods Eat() Animal's eat method. void 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. Eat(string) Feed the animal with some food void Eat(string food) Parameters food string Food to eat" - }, - "apipage/CatLibrary.ICat.html": { - "href": "apipage/CatLibrary.ICat.html", - "title": "Interface ICat | docfx seed website", - "keywords": "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" - }, - "apipage/CatLibrary.ICatExtension.html": { - "href": "apipage/CatLibrary.ICatExtension.html", - "title": "Class ICatExtension | docfx seed website", - "keywords": "Class ICatExtension 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." - }, - "apipage/CatLibrary.MRefDelegate-3.html": { - "href": "apipage/CatLibrary.MRefDelegate-3.html", - "title": "Delegate MRefDelegate | docfx seed website", - "keywords": "Delegate MRefDelegate Namespace CatLibrary Assembly CatLibrary.dll Generic delegate with many constrains. public delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable Parameters k K Type K. t T Type T. l L Type L. Type Parameters K Generic K. T Generic T. L Generic L." - }, - "apipage/CatLibrary.MRefNormalDelegate.html": { - "href": "apipage/CatLibrary.MRefNormalDelegate.html", - "title": "Delegate MRefNormalDelegate | docfx seed website", - "keywords": "Delegate MRefNormalDelegate Namespace CatLibrary Assembly CatLibrary.dll Delegate in the namespace public delegate void MRefNormalDelegate(List pics, out string name) Parameters pics List a name list of pictures. name string give out the needed name." - }, - "apipage/CatLibrary.Tom.html": { - "href": "apipage/CatLibrary.Tom.html", - "title": "Class Tom | docfx seed website", - "keywords": "Class Tom Namespace CatLibrary Assembly CatLibrary.dll Tom class is only inherit from Object. Not any member inside itself. public class Tom Inheritance object Tom Derived TomFromBaseClass Inherited Members object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Methods TomMethod(Complex, Tuple) This is a Tom Method with complex type as return public Complex TomMethod(Complex a, Tuple b) Parameters a Complex A complex input b Tuple Another complex input Returns Complex Complex TomFromBaseClass Exceptions NotImplementedException This is not implemented ArgumentException This is the exception to be thrown when implemented CatException This is the exception in current documentation" - }, - "apipage/CatLibrary.TomFromBaseClass.html": { - "href": "apipage/CatLibrary.TomFromBaseClass.html", - "title": "Class TomFromBaseClass | docfx seed website", - "keywords": "Class TomFromBaseClass Namespace CatLibrary Assembly CatLibrary.dll TomFromBaseClass inherits from @ public class TomFromBaseClass : Tom Inheritance object Tom TomFromBaseClass Inherited Members Tom.TomMethod(Complex, Tuple) object.Equals(object?) object.Equals(object?, object?) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object?, object?) object.ToString() Constructors TomFromBaseClass(int) This is a #ctor with parameter public TomFromBaseClass(int k) Parameters k int" - }, - "apipage/CatLibrary.html": { - "href": "apipage/CatLibrary.html", - "title": "Namespace CatLibrary | docfx seed website", - "keywords": "Namespace CatLibrary Namespaces CatLibrary.Core Classes 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 ICatExtension class CatException Complex ICatExtension 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 Tom Tom class is only inherit from Object. Not any member inside itself. TomFromBaseClass TomFromBaseClass inherits from @ Interfaces IAnimal This is basic interface of all animal. ICat Cat's interface Delegates FakeDelegate Fake delegate MRefDelegate Generic delegate with many constrains. MRefNormalDelegate Delegate in the namespace" - }, - "apipage/MRef.Demo.Enumeration.ColorType.html": { - "href": "apipage/MRef.Demo.Enumeration.ColorType.html", - "title": "Enum ColorType | docfx seed website", - "keywords": "Enum ColorType Namespace MRef.Demo.Enumeration Assembly CatLibrary.dll Enumeration ColorType public enum ColorType Fields Red = 0 this color is red Blue = 1 blue like river Yellow = 2 yellow comes from desert Remarks Red/Blue/Yellow can become all color you want. See Also object" - }, - "apipage/MRef.Demo.Enumeration.html": { - "href": "apipage/MRef.Demo.Enumeration.html", - "title": "Namespace MRef.Demo.Enumeration | docfx seed website", - "keywords": "Namespace MRef.Demo.Enumeration Enums ColorType Enumeration ColorType" - }, - "apipage/MRef.Demo.html": { - "href": "apipage/MRef.Demo.html", - "title": "Namespace MRef.Demo | docfx seed website", - "keywords": "Namespace MRef.Demo Namespaces MRef.Demo.Enumeration" - }, - "apipage/MRef.html": { - "href": "apipage/MRef.html", - "title": "Namespace MRef | docfx seed website", - "keywords": "Namespace MRef Namespaces MRef.Demo" - }, - "articles/csharp_coding_standards.html": { - "href": "articles/csharp_coding_standards.html", - "title": "C# Coding Standards | docfx seed website", - "keywords": "C# Coding Standards Introduction The 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 all developers on the team in a consistent manner. \"Any fool can write code that a computer can understand. Good programmers write code that humans understand\". Martin Fowler. Refactoring: Improving the design of existing code. Purpose The aim of this section is to define a set of C# coding standards to be used by CAPS build team to guarantee maximum legibility, reliability, re-usability and homogeneity of our code. Each section is marked Mandatory or Recommended. Mandatory sections, will be enforced during code reviews as well as tools like StyleCop and FxCop, and code will not be considered complete until it is compliant. Scope This section contains general C# coding standards which can be applied to any type of application developed in C#, based on Framework Design Guidelines. It does not pretend to be a tutorial on C#. It only includes a set of limitations and recommendations focused on clarifying the development. Tools Resharper is a great 3rd party code cleanup and style tool. StyleCop analyzes C# srouce code to enforce a set of style and consistency rules and has been integrated into many 3rd party development tools such as Resharper. FxCop is an application that analyzes managed code assemblies (code that targets the .NET Framework common language runtime) and reports information about the assemblies, such as possible design, localization, performance, and security improvements. C# Stylizer does many of the style rules automatically Highlights of Coding Standards This section is not intended to give a summary of all the coding standards that enabled by our customized StyleCop, but to give a highlight of some rules one will possibly meet in daily coding life. It also provides some recommended however not mandatory(which means not 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 : Observer Filename: Observer.cs Class Definition Order (Mandatory) The class definition contains class members in the following order, from less restricted scope (public) to more restrictive (private): Nested types, e.g. classes, enum, struct, etc. Field members, e.g. member variables, const, etc. Member functions Constructors Finalizer (Do not use unless absolutely necessary) Methods (Properties, Events, Operations, Overridables, Static) Private nested types Naming (Mandatory) DO use PascalCasing for all public member, type, and namespace names consisting of multiple words. PropertyDescriptor HtmlTag IOStream NOTE: A special case is made for two-letter acronyms in which both letters are capitalized, e.g. IOStream DO use camelCasing for parameter names. propertyDescriptor htmlTag ioStream DO start with underscore for private fields private readonly Guid _userId = Guid.NewGuid(); DO start static readonly fields, constants with capitalized case private static readonly IEntityAccessor EntityAccessor = null; private const string MetadataName = \"MetadataName\"; DO NOT capitalize each word in so-called closed-form compound words. DO have \"Async\" explicitly in the Async method name to notice people how to use it properly Formatting (Mandatory) DO use spaces over tabs, and always show all spaces/tabs in IDE Tips Visual Studio > TOOLS > Options > Text Editor > C# > Tabs > Insert spaces (Tab size: 4) Visual Studio > Edit > Advanced > View White Space DO add using inside namespace declaration namespace Microsoft.Content.Build.BuildWorker.UnitTest { using System; } DO add a space when: for (var i = 0; i < 1; i++) if (a == b) Cross-platform coding Our code should supports multiple operating systems. Don't assume we only run (and develop) on Windows. 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. Note Be aware that thes line-endings may cause problems in code when using @\"\" text blocks with line breaks. DO Use Path.Combine() or Path.DirectorySeparatorChar to separate directories. If this is not possible (such as in scripting), use a forward slash /. Windows is more forgiving than Linux in this regard. Unit tests and functional tests Assembly naming The 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 general there should be one functional test assembly per repo. Exceptions can be made for both. Unit test class naming Test 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 naming Unit test method names must be descriptive about what is being tested, under what conditions, and what the expectations are. Pascal casing and underscores can be used to improve readability. The following test names are correct: PublicApiArgumentsShouldHaveNotNullAnnotation Public_api_arguments_should_have_not_null_annotation The following test names are incorrect: Test1 Constructor FormatString GetData Unit test structure The contents of every unit test should be split into three distinct stages, optionally separated by these comments: // Arrange // Act // Assert The crucial thing here is the Act stage is exactly one statement. That one statement is nothing more than a call to the one method that you are trying to test. keeping that one statement as simple as possible is also very important. For example, this is not ideal: int result = myObj.CallSomeMethod(GetComplexParam1(), GetComplexParam2(), GetComplexParam3()); This style is not recomended because way too many things can go wrong in this one statement. All the GetComplexParamN() calls can throw for a variety of reasons unrelated to the 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: // Arrange P1 p1 = GetComplexParam1(); P2 p2 = GetComplexParam2(); P3 p3 = GetComplexParam3(); // Act int result = myObj.CallSomeMethod(p1, p2, p3); // Assert Assert.AreEqual(1234, result); Now the only reason the line with CallSomeMethod() can fail is if the method itself blew up. Testing exception messages In general testing the specific exception message in a unit test is important. This ensures that the exact desired exception is what is being tested rather than a different exception of the same type. In order to verify the exact exception it is important to verify the message. var ex = Assert.Throws( () => fruitBasket.GetBananaById(1234)); Assert.Equal( \"1234\", ex.Message); Use xUnit.net's plethora of built-in assertions xUnit.net includes many kinds of assertions – please use the most appropriate one for your test. This will make 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: 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)); } These are good: Assert.True(someBool); Assert.Equal(\"abc123\", someString); // built-in collection assertions! Assert.Equal(list1, list2, StringComparer.OrdinalIgnoreCase); Parallel tests By default all unit test assemblies should run in parallel mode, which is the default. Unit tests shouldn't depend 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." - }, - "articles/docfx_getting_started.html": { - "href": "articles/docfx_getting_started.html", - "title": "Getting Started with docfx | docfx seed website", - "keywords": "Getting Started with docfx Getting Started This is a seed. docfx is an API documentation generator for .NET, currently support C# and VB. It has the ability to extract triple slash comments out from your source code. What's more, it has syntax to link additional files to API to add additional remarks. docfx will scan your source code and your additional conceptual files and generate a complete HTML documentation website for you. docfx provides the flexibility for you 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 to GitHub) docfx provide DNX version for cross platform use. docfx can be used within Visual Studio seamlessly. NOTE offical docfx.msbuild nuget package is now 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 file inclusion, cross reference, and yaml header." - }, - "articles/engineering_guidelines.html": { - "href": "articles/engineering_guidelines.html", - "title": "Engineering Guidelines | docfx seed website", - "keywords": "Engineering Guidelines Basics Copyright header and license notice All source code files require the following exact header according to its language (please do not make any changes to it). extension: .cs // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. extension: .js // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. extension: .css /** * Licensed to the .NET Foundation under one or more agreements. * The .NET Foundation licenses this file to you under the MIT license. */ extension: .tmpl, .tmpl.partial {{!Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license.}} External dependencies This refers to dependencies on projects (i.e. NuGet packages) outside of the docfx repo, and especially outside of Microsoft. Adding new dependencies require additional approval. Current approved dependencies are: Newtonsoft.Json Jint HtmlAgilityPack Nustache YamlDotNet Code reviews and checkins To help ensure that only the highest quality code makes its way into the project, please submit all your code changes to GitHub as PRs. This includes runtime code changes, unit test updates, and deployment scripts. For example, sending a PR for just an update to a unit test might seem like a waste of time but the unit tests are just as important as the product 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 their potential impact, avoiding duplication of effort, and creating general awareness of progress being 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 typical push that you would use with Git (e.g. local pull, rebase, merge, push). Source Code Management Branch strategy In 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 devs normally submit pull requests and merge changes into. We run daily CI towards 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 be merged back to master and dev once it is verified. Solution and project folder structure and naming Solution 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 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 The general naming pattern is Docfx... Unit tests We use xUnit.net for all unit testing. Coding Standards Please refer to C# Coding standards for detailed guideline for C# coding standards. TODO Template Coding standards TODO Template Preprocess JS Coding standards" - }, - "articles/markdown.html": { - "href": "articles/markdown.html", - "title": "Markdown | docfx seed website", - "keywords": "Markdown Markdown is a lightweight markup language with plain text formatting syntax. Docfx supports CommonMark compliant Markdown parsed through the Markdig parsing engine. Link to Math Expressions Block Quotes This is a block quote. Alerts Note Information the user should notice even if skimming. Tip Optional information to help a user be more successful. Important Essential information required for user success. Caution Negative potential consequences of an action. Warning Dangerous certain consequences of an action. MY TODO This is a TODO. Image Mermaid Diagrams Flowchart flowchart LR A[Hard] -->|Text| B(Round) B --> C{Decision} C -->|One| D[Result 1] C -->|Two| E[Result 2] Code Snippet The example highlights lines 2, line 5 to 7 and lines 9 to the end of the file. 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); } } } Math Expressions This sentence uses $ delimiters to show math inline: \\(\\sqrt{3x-1}+(1+x)^2\\) The Cauchy-Schwarz Inequality \\(\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)\\) This expression uses \\$ to display a dollar sign: \\(\\sqrt{\\$4}\\) To split $100 in half, we calculate \\(100/2\\) Custom Syntax Highlighting resource storageAccount 'Microsoft.Storage/storageAccounts@2021-06-01' = { name: 'hello' // (...) } Tabs Linux Windows Content for Linux... Content for Windows... The above tab group was created with the following syntax: # [Linux](#tab/linux) Content for Linux... # [Windows](#tab/windows) Content for Windows... --- Tabs are indicated by using a specific link syntax within a Markdown header. The syntax can be described as follows: # [Tab Display Name](#tab/tab-id) A tab starts with a Markdown header, #, and is followed by a Markdown link [](). The text of the link will become the text of the tab header, displayed to the customer. In order for the header to be recognized as a tab, the link itself must start with #tab/ and be followed by an ID representing the content of the tab. The ID is used to sync all same-ID tabs across the page. Using the above example, when a user selects a tab with the link #tab/windows, all tabs with the link #tab/windows on the page will be selected. Dependent tabs It'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: .NET .NET TypeScript TypeScript REST API .NET content for Linux... .NET content for Windows... TypeScript content for Linux... TypeScript content for Windows... REST API content, independent of platform... flowchart LR A[Hard] -->|Text| B(Round) B --> C{Decision} C -->|One| D[Result 1] C -->|Two| E[Result 2] Notice how changing the Linux/Windows selection above changes the content in the .NET and TypeScript tabs. This is because the tab group defines two versions for each .NET and TypeScript, where the Windows/Linux selection above determines which version is shown for .NET/TypeScript. Here's the markup that shows how this is done: # [.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... --- Details Demo root@server# apt-get install nano" - }, - "index.html": { - "href": "index.html", - "title": "docfx-seed | docfx seed website", - "keywords": "docfx-seed Description This is a sample docfx documentation project. It contains .NET source code and markdown files. docfx.json is the configuration file for running docfx. docfx will generate a static website as similar to http://docascode.github.io/docfx-seed. How to run Under Windows Download and unzip docfx.zip to run docfx.exe directly! Run docfx under current repo! Website will be generated under _site folder. Run any web hosting tool to host _site folder, e.g. docfx serve _site. Cross platform and use dnx As a prerequisite, you will need to install DNVM and DNX. ###Quick Start dnvm upgrade to get the latest dnvm. Add feed https://www.myget.org/F/aspnetrelease/api/v2/ to Nuget.config For Windows, the nuget config file is %AppData%\\NuGet\\NuGet.config. For Linux/OSX, the nuget config file is ~/.config/NuGet/NuGet.config. dnu commands install docfx to install docfx as a command Run docfx under current repo! Website will be generated under _site folder. Run any web hosting tool to host _site folder, e.g. docfx serve _site. Further information about docfx docfx is a tool to generate documentation towards .NET source code and markdown files. Please refer to docfx to get start. The docfx website itself is generated by docfx!" - }, - "md/BuildFromAssembly.Class1.html": { - "href": "md/BuildFromAssembly.Class1.html", - "title": "Class Class1 | docfx seed website", - "keywords": "Class Class1 Namespace: BuildFromAssembly Assembly: BuildFromAssembly.dll This is a test class. public class Class1 Inheritance object ← Class1 Inherited Members object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode() Constructors Class1() public Class1() Methods HelloWorld() Hello World. public static void HelloWorld()" - }, - "md/BuildFromAssembly.Issue5432.html": { - "href": "md/BuildFromAssembly.Issue5432.html", - "title": "Struct Issue5432 | docfx seed website", - "keywords": "Struct Issue5432 Namespace: BuildFromAssembly Assembly: BuildFromAssembly.dll public struct Issue5432 Inherited Members object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode() Properties Name public string Name { get; } Property Value string" - }, - "md/BuildFromAssembly.html": { - "href": "md/BuildFromAssembly.html", - "title": "Namespace BuildFromAssembly | docfx seed website", - "keywords": "Namespace BuildFromAssembly Classes Class1 This is a test class. Structs Issue5432" - }, - "md/BuildFromCSharpSourceCode.CSharp.html": { - "href": "md/BuildFromCSharpSourceCode.CSharp.html", - "title": "Class CSharp | docfx seed website", - "keywords": "Class CSharp Namespace: BuildFromCSharpSourceCode public class CSharp Inheritance object ← CSharp Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods Main(string[]) public static void Main(string[] args) Parameters args string[]" - }, - "md/BuildFromCSharpSourceCode.html": { - "href": "md/BuildFromCSharpSourceCode.html", - "title": "Namespace BuildFromCSharpSourceCode | docfx seed website", - "keywords": "Namespace BuildFromCSharpSourceCode Classes CSharp" - }, - "md/BuildFromProject.Class1.IIssue8948.html": { - "href": "md/BuildFromProject.Class1.IIssue8948.html", - "title": "Interface Class1.IIssue8948 | docfx seed website", - "keywords": "Interface Class1.IIssue8948 Namespace: BuildFromProject Assembly: BuildFromProject.dll public interface Class1.IIssue8948 Methods DoNothing() Does nothing with generic type T. void DoNothing() Type Parameters T A generic type." - }, - "md/BuildFromProject.Class1.Issue8665.html": { - "href": "md/BuildFromProject.Class1.Issue8665.html", - "title": "Class Class1.Issue8665 | docfx seed website", - "keywords": "Class Class1.Issue8665 Namespace: BuildFromProject Assembly: BuildFromProject.dll public class Class1.Issue8665 Inheritance object ← Class1.Issue8665 Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Constructors Issue8665() public Issue8665() Issue8665(int) public Issue8665(int foo) Parameters foo int Issue8665(int, char) public Issue8665(int foo, char bar) Parameters foo int bar char Issue8665(int, char, string) public Issue8665(int foo, char bar, string baz) Parameters foo int bar char baz string Properties Bar public char Bar { get; } Property Value char Baz public string Baz { get; } Property Value string Foo public int Foo { get; } Property Value int" - }, - "md/BuildFromProject.Class1.Issue8696Attribute.html": { - "href": "md/BuildFromProject.Class1.Issue8696Attribute.html", - "title": "Class Class1.Issue8696Attribute | docfx seed website", - "keywords": "Class Class1.Issue8696Attribute Namespace: BuildFromProject Assembly: BuildFromProject.dll public class Class1.Issue8696Attribute : Attribute Inheritance object ← Attribute ← Class1.Issue8696Attribute Inherited Members Attribute.Equals(object?), Attribute.GetCustomAttribute(Assembly, Type), Attribute.GetCustomAttribute(Assembly, Type, bool), Attribute.GetCustomAttribute(MemberInfo, Type), Attribute.GetCustomAttribute(MemberInfo, Type, bool), Attribute.GetCustomAttribute(Module, Type), Attribute.GetCustomAttribute(Module, Type, bool), Attribute.GetCustomAttribute(ParameterInfo, Type), Attribute.GetCustomAttribute(ParameterInfo, Type, bool), Attribute.GetCustomAttributes(Assembly), Attribute.GetCustomAttributes(Assembly, bool), Attribute.GetCustomAttributes(Assembly, Type), Attribute.GetCustomAttributes(Assembly, Type, bool), Attribute.GetCustomAttributes(MemberInfo), Attribute.GetCustomAttributes(MemberInfo, bool), Attribute.GetCustomAttributes(MemberInfo, Type), Attribute.GetCustomAttributes(MemberInfo, Type, bool), Attribute.GetCustomAttributes(Module), Attribute.GetCustomAttributes(Module, bool), Attribute.GetCustomAttributes(Module, Type), Attribute.GetCustomAttributes(Module, Type, bool), Attribute.GetCustomAttributes(ParameterInfo), Attribute.GetCustomAttributes(ParameterInfo, bool), Attribute.GetCustomAttributes(ParameterInfo, Type), Attribute.GetCustomAttributes(ParameterInfo, Type, bool), Attribute.GetHashCode(), Attribute.IsDefaultAttribute(), Attribute.IsDefined(Assembly, Type), Attribute.IsDefined(Assembly, Type, bool), Attribute.IsDefined(MemberInfo, Type), Attribute.IsDefined(MemberInfo, Type, bool), Attribute.IsDefined(Module, Type), Attribute.IsDefined(Module, Type, bool), Attribute.IsDefined(ParameterInfo, Type), Attribute.IsDefined(ParameterInfo, Type, bool), Attribute.Match(object?), Attribute.TypeId, object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Constructors Issue8696Attribute(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) Parameters description string? boundsMin int boundsMax int validGameModes string[]? hasMultipleSelections bool enumType Type?" - }, - "md/BuildFromProject.Class1.Issue8948.html": { - "href": "md/BuildFromProject.Class1.Issue8948.html", - "title": "Class Class1.Issue8948 | docfx seed website", - "keywords": "Class Class1.Issue8948 Namespace: BuildFromProject Assembly: BuildFromProject.dll public class Class1.Issue8948 : Class1.IIssue8948 Inheritance object ← Class1.Issue8948 Implements Class1.IIssue8948 Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods DoNothing() Does nothing with generic type T. public void DoNothing() Type Parameters T A generic type." - }, - "md/BuildFromProject.Class1.Issue9260.html": { - "href": "md/BuildFromProject.Class1.Issue9260.html", - "title": "Enum Class1.Issue9260 | docfx seed website", - "keywords": "Enum Class1.Issue9260 Namespace: BuildFromProject Assembly: BuildFromProject.dll public enum Class1.Issue9260 Fields Value = 0 This is a regular enum value. This is a remarks section. Very important remarks about Value go here. OldAndUnusedValue = 1 This is old and unused. You shouldn't use it anymore. Don't use this, seriously! Use Value instead. OldAndUnusedValue2 = 2 This is old and unused. You shouldn't use it anymore. Don't use this, seriously! Use Value instead." - }, - "md/BuildFromProject.Class1.Test-1.html": { - "href": "md/BuildFromProject.Class1.Test-1.html", - "title": "Class Class1.Test | docfx seed website", - "keywords": "Class Class1.Test Namespace: BuildFromProject Assembly: BuildFromProject.dll public class Class1.Test Type Parameters T Inheritance object ← Class1.Test Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()" - }, - "md/BuildFromProject.Class1.html": { - "href": "md/BuildFromProject.Class1.html", - "title": "Class Class1 | docfx seed website", - "keywords": "Class Class1 Namespace: BuildFromProject Assembly: BuildFromProject.dll public class Class1 : IClass1 Inheritance object ← Class1 Implements IClass1 Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods Issue1651() Pricing models are used to calculate theoretical option values 1Black Scholes 2Black76 3Black76Fut 4Equity Tree 5Variance Swap 6Dividend Forecast public void Issue1651() Issue1887() IConfiguration related helper and extension routines. public void Issue1887() Issue2623() public void Issue2623() Examples MyClass myClass = new MyClass(); void Update() { myClass.Execute(); } Remarks For example: MyClass myClass = new MyClass(); void Update() { myClass.Execute(); } Issue2723() public void Issue2723() Remarks Note This is a . & \" ' Inline . link for (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() Examples 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; } Remarks void Update() { myClass.Execute(); } Issue4392() public void Issue4392() Remarks @\"\\\\?\\\" @\"\\\\?\\\" Issue7484() public void Issue7484() Remarks There's really no reason to not believe that this class can test things. Term Description A Term A Description Bee Term Bee Description Issue8764() public void Issue8764() where T : unmanaged Type Parameters T Issue896() Test public void Issue896() See Also Class1.Test, Class1 Issue9216() Calculates the determinant of a 3-dimensional matrix: \\(A = \\begin{vmatrix} a_{11} & a_{12} & a_{13} \\\\ a_{21} & a_{22} & a_{23} \\\\ a_{31} & a_{32} & a_{33} \\end{vmatrix}\\) Returns the smallest value: \\(\\left\\{\\begin{matrix}a, aa\\\\ \\end{matrix} \\right.\\) public static double Issue9216() Returns double XmlCommentIncludeTag() This method should do something... public void XmlCommentIncludeTag() Remarks This is remarks." - }, - "md/BuildFromProject.Dog.html": { - "href": "md/BuildFromProject.Dog.html", - "title": "Class Dog | docfx seed website", - "keywords": "Class Dog Namespace: BuildFromProject Assembly: BuildFromProject.dll Class representing a dog. public class Dog Inheritance object ← Dog Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Constructors Dog(string, int) Constructor. public Dog(string name, int age) Parameters name string Name of the dog. age int Age of the dog. Properties Age Age of the dog. public int Age { get; } Property Value int Name Name of the dog. public string Name { get; } Property Value string" - }, - "md/BuildFromProject.IInheritdoc.html": { - "href": "md/BuildFromProject.IInheritdoc.html", - "title": "Interface IInheritdoc | docfx seed website", - "keywords": "Interface IInheritdoc Namespace: BuildFromProject Assembly: BuildFromProject.dll public interface IInheritdoc Methods Issue7629() This method should do something... void Issue7629()" - }, - "md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html": { - "href": "md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "title": "Class Inheritdoc.Issue6366.Class1 | docfx seed website", - "keywords": "Class Inheritdoc.Issue6366.Class1 Namespace: BuildFromProject Assembly: BuildFromProject.dll public abstract class Inheritdoc.Issue6366.Class1 Type Parameters T Inheritance object ← Inheritdoc.Issue6366.Class1 Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods TestMethod1(T, int) This text inherited. public abstract T TestMethod1(T parm1, int parm2) Parameters parm1 T This text NOT inherited. parm2 int This text inherited. Returns T This text inherited." - }, - "md/BuildFromProject.Inheritdoc.Issue6366.Class2.html": { - "href": "md/BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "title": "Class Inheritdoc.Issue6366.Class2 | docfx seed website", - "keywords": "Class Inheritdoc.Issue6366.Class2 Namespace: BuildFromProject Assembly: BuildFromProject.dll public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1 Inheritance object ← Inheritdoc.Issue6366.Class1 ← Inheritdoc.Issue6366.Class2 Inherited Members Inheritdoc.Issue6366.Class1.TestMethod1(bool, int), object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods TestMethod1(bool, int) This text inherited. public override bool TestMethod1(bool parm1, int parm2) Parameters parm1 bool This text NOT inherited. parm2 int This text inherited. Returns bool This text inherited." - }, - "md/BuildFromProject.Inheritdoc.Issue6366.html": { - "href": "md/BuildFromProject.Inheritdoc.Issue6366.html", - "title": "Class Inheritdoc.Issue6366 | docfx seed website", - "keywords": "Class Inheritdoc.Issue6366 Namespace: BuildFromProject Assembly: BuildFromProject.dll public class Inheritdoc.Issue6366 Inheritance object ← Inheritdoc.Issue6366 Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()" - }, - "md/BuildFromProject.Inheritdoc.Issue7035.html": { - "href": "md/BuildFromProject.Inheritdoc.Issue7035.html", - "title": "Class Inheritdoc.Issue7035 | docfx seed website", - "keywords": "Class Inheritdoc.Issue7035 Namespace: BuildFromProject Assembly: BuildFromProject.dll public class Inheritdoc.Issue7035 Inheritance object ← Inheritdoc.Issue7035 Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods A() public void A() B() public void B()" - }, - "md/BuildFromProject.Inheritdoc.Issue7484.html": { - "href": "md/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." - }, - "md/BuildFromProject.Inheritdoc.Issue8101.html": { - "href": "md/BuildFromProject.Inheritdoc.Issue8101.html", - "title": "Class Inheritdoc.Issue8101 | docfx seed website", - "keywords": "Class Inheritdoc.Issue8101 Namespace: BuildFromProject Assembly: BuildFromProject.dll public class Inheritdoc.Issue8101 Inheritance object ← Inheritdoc.Issue8101 Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods Tween(float, float, float, Action) Create a new tween. public static object Tween(float from, float to, float duration, Action onChange) Parameters from float The starting value. to float The end value. duration float Total tween duration in seconds. onChange Action A callback that will be invoked every time the tween value changes. Returns object The newly created tween instance. Tween(int, int, float, Action) Create a new tween. public static object Tween(int from, int to, float duration, Action onChange) Parameters from int The starting value. to int The end value. duration float Total tween duration in seconds. onChange Action A callback that will be invoked every time the tween value changes. Returns object The newly created tween instance." - }, - "md/BuildFromProject.Inheritdoc.Issue8129.html": { - "href": "md/BuildFromProject.Inheritdoc.Issue8129.html", - "title": "Struct Inheritdoc.Issue8129 | docfx seed website", - "keywords": "Struct Inheritdoc.Issue8129 Namespace: BuildFromProject Assembly: BuildFromProject.dll public struct Inheritdoc.Issue8129 Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString() Constructors Issue8129(string) public Issue8129(string foo) Parameters foo string" - }, - "md/BuildFromProject.Inheritdoc.html": { - "href": "md/BuildFromProject.Inheritdoc.html", - "title": "Class Inheritdoc | docfx seed website", - "keywords": "Class Inheritdoc Namespace: BuildFromProject Assembly: BuildFromProject.dll public class Inheritdoc : IInheritdoc, IDisposable Inheritance object ← Inheritdoc Implements IInheritdoc, IDisposable Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods Dispose() Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. public void Dispose() Issue7628() This method should do something... public void Issue7628() Issue7629() This method should do something... public void Issue7629()" - }, - "md/BuildFromProject.Issue8540.A.A.html": { - "href": "md/BuildFromProject.Issue8540.A.A.html", - "title": "Class A | docfx seed website", - "keywords": "Class A Namespace: BuildFromProject.Issue8540.A Assembly: BuildFromProject.dll public class A Inheritance object ← A Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()" - }, - "md/BuildFromProject.Issue8540.A.html": { - "href": "md/BuildFromProject.Issue8540.A.html", - "title": "Namespace BuildFromProject.Issue8540.A | docfx seed website", - "keywords": "Namespace BuildFromProject.Issue8540.A Classes A" - }, - "md/BuildFromProject.Issue8540.B.B.html": { - "href": "md/BuildFromProject.Issue8540.B.B.html", - "title": "Class B | docfx seed website", - "keywords": "Class B Namespace: BuildFromProject.Issue8540.B Assembly: BuildFromProject.dll public class B Inheritance object ← B Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()" - }, - "md/BuildFromProject.Issue8540.B.html": { - "href": "md/BuildFromProject.Issue8540.B.html", - "title": "Namespace BuildFromProject.Issue8540.B | docfx seed website", - "keywords": "Namespace BuildFromProject.Issue8540.B Classes B" - }, - "md/BuildFromProject.Issue8540.html": { - "href": "md/BuildFromProject.Issue8540.html", - "title": "Namespace BuildFromProject.Issue8540 | docfx seed website", - "keywords": "Namespace BuildFromProject.Issue8540 Namespaces BuildFromProject.Issue8540.A BuildFromProject.Issue8540.B" - }, - "md/BuildFromProject.Issue8725.html": { - "href": "md/BuildFromProject.Issue8725.html", - "title": "Class Issue8725 | docfx seed website", - "keywords": "Class Issue8725 Namespace: BuildFromProject Assembly: BuildFromProject.dll A nice class public class Issue8725 Inheritance object ← Issue8725 Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods MoreOperations() Another nice operation public void MoreOperations() MyOperation() A nice operation public void MyOperation() See Also Class1" - }, - "md/BuildFromProject.html": { - "href": "md/BuildFromProject.html", - "title": "Namespace BuildFromProject | docfx seed website", - "keywords": "Namespace BuildFromProject Namespaces BuildFromProject.Issue8540 Classes Inheritdoc.Issue6366.Class1 Class1 Inheritdoc.Issue6366.Class2 Dog Class representing a dog. Inheritdoc Inheritdoc.Issue6366 Inheritdoc.Issue7035 Inheritdoc.Issue7484 This is a test class to have something for DocFX to document. Inheritdoc.Issue8101 Class1.Issue8665 Class1.Issue8696Attribute Issue8725 A nice class Class1.Issue8948 Class1.Test Structs Inheritdoc.Issue8129 Interfaces IInheritdoc Class1.IIssue8948 Enums Class1.Issue9260" - }, - "md/BuildFromVBSourceCode.BaseClass1.html": { - "href": "md/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" - }, - "md/BuildFromVBSourceCode.Class1.html": { - "href": "md/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 BaseClass1.WithDeclarationKeyword(Class1), 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" - }, - "md/BuildFromVBSourceCode.html": { - "href": "md/BuildFromVBSourceCode.html", - "title": "Namespace BuildFromVBSourceCode | docfx seed website", - "keywords": "Namespace BuildFromVBSourceCode Classes BaseClass1 This is the BaseClass Class1 This is summary from vb class..." - }, - "md/CatLibrary.Cat-2.html": { - "href": "md/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 [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.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 Here's all the content you can see in this class. Constructors Cat() Default constructor. public Cat() Cat(T) Constructor with one generic parameter. public Cat(T ownType) Parameters ownType T This parameter type defined by class. 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. 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 Name EII property. public string Name { get; } Property Value string 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; } Property Value int Methods CalculateFood(DateTime) It's a method with complex return type. public Dictionary> CalculateFood(DateTime date) Parameters date DateTime Date time to now. Returns Dictionary> It's a relationship map of different kind food. 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 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" - }, - "md/CatLibrary.CatException-1.html": { - "href": "md/CatLibrary.CatException-1.html", - "title": "Class CatException | docfx seed website", - "keywords": "Class CatException Namespace: CatLibrary Assembly: CatLibrary.dll public class CatException : Exception, ISerializable Type Parameters T Inheritance object ← Exception ← CatException Implements ISerializable Inherited Members Exception.GetBaseException(), Exception.GetObjectData(SerializationInfo, StreamingContext), Exception.GetType(), Exception.ToString(), Exception.Data, Exception.HelpLink, Exception.HResult, Exception.InnerException, Exception.Message, Exception.Source, Exception.StackTrace, Exception.TargetSite, Exception.SerializeObjectState, object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()" - }, - "md/CatLibrary.Complex-2.html": { - "href": "md/CatLibrary.Complex-2.html", - "title": "Class Complex | docfx seed website", - "keywords": "Class Complex Namespace: CatLibrary Assembly: CatLibrary.dll public class Complex Type Parameters T J Inheritance object ← Complex Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()" - }, - "md/CatLibrary.Core.ContainersRefType.ColorType.html": { - "href": "md/CatLibrary.Core.ContainersRefType.ColorType.html", - "title": "Enum ContainersRefType.ColorType | docfx seed website", - "keywords": "Enum ContainersRefType.ColorType Namespace: CatLibrary.Core Assembly: CatLibrary.Core.dll Enumeration ColorType public enum ContainersRefType.ColorType Fields Red = 0 red Blue = 1 blue Yellow = 2 yellow" - }, - "md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html": { - "href": "md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "title": "Class ContainersRefType.ContainersRefTypeChild | docfx seed website", - "keywords": "Class ContainersRefType.ContainersRefTypeChild Namespace: CatLibrary.Core Assembly: CatLibrary.Core.dll public class ContainersRefType.ContainersRefTypeChild Inheritance object ← ContainersRefType.ContainersRefTypeChild Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()" - }, - "md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html": { - "href": "md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "title": "Interface ContainersRefType.ContainersRefTypeChildInterface | docfx seed website", - "keywords": "Interface ContainersRefType.ContainersRefTypeChildInterface Namespace: CatLibrary.Core Assembly: CatLibrary.Core.dll public interface ContainersRefType.ContainersRefTypeChildInterface" - }, - "md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html": { - "href": "md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "title": "Delegate ContainersRefType.ContainersRefTypeDelegate | docfx seed website", - "keywords": "Delegate ContainersRefType.ContainersRefTypeDelegate Namespace: CatLibrary.Core Assembly: CatLibrary.Core.dll Delegate ContainersRefTypeDelegate public delegate void ContainersRefType.ContainersRefTypeDelegate()" - }, - "md/CatLibrary.Core.ContainersRefType.html": { - "href": "md/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 object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString() 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 ContainersRefTypeEventHandler public event EventHandler ContainersRefTypeEventHandler Event Type EventHandler" - }, - "md/CatLibrary.Core.ExplicitLayoutClass.html": { - "href": "md/CatLibrary.Core.ExplicitLayoutClass.html", - "title": "Class ExplicitLayoutClass | docfx seed website", - "keywords": "Class ExplicitLayoutClass Namespace: CatLibrary.Core Assembly: CatLibrary.Core.dll public class ExplicitLayoutClass Inheritance object ← ExplicitLayoutClass Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()" - }, - "md/CatLibrary.Core.Issue231.html": { - "href": "md/CatLibrary.Core.Issue231.html", - "title": "Class Issue231 | docfx seed website", - "keywords": "Class Issue231 Namespace: CatLibrary.Core Assembly: CatLibrary.dll, CatLibrary.Core.dll public static class Issue231 Inheritance object ← Issue231 Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods Bar(ContainersRefType) public static void Bar(this ContainersRefType c) Parameters c ContainersRefType Foo(ContainersRefType) public static void Foo(this ContainersRefType c) Parameters c ContainersRefType" - }, - "md/CatLibrary.Core.html": { - "href": "md/CatLibrary.Core.html", - "title": "Namespace CatLibrary.Core | docfx seed website", - "keywords": "Namespace CatLibrary.Core Classes ContainersRefType.ContainersRefTypeChild ExplicitLayoutClass Issue231 Issue231 Structs ContainersRefType Struct ContainersRefType Interfaces ContainersRefType.ContainersRefTypeChildInterface Enums ContainersRefType.ColorType Enumeration ColorType Delegates ContainersRefType.ContainersRefTypeDelegate Delegate ContainersRefTypeDelegate" - }, - "md/CatLibrary.FakeDelegate-1.html": { - "href": "md/CatLibrary.FakeDelegate-1.html", - "title": "Delegate FakeDelegate | docfx seed website", - "keywords": "Delegate FakeDelegate Namespace: CatLibrary Assembly: CatLibrary.dll Fake delegate public delegate int FakeDelegate(long num, string name, params object[] scores) Parameters num long Fake para name string Fake para scores object[] Optional Parameter. Returns int Return a fake number to confuse you. Type Parameters T Fake para" - }, - "md/CatLibrary.IAnimal.html": { - "href": "md/CatLibrary.IAnimal.html", - "title": "Interface IAnimal | docfx seed website", - "keywords": "Interface IAnimal Namespace: CatLibrary Assembly: CatLibrary.dll This is basic interface of all animal. public interface IAnimal Properties Name Name of Animal. string Name { get; } Property Value string this[int] Return specific number animal's name. string this[int index] { get; } Property Value string Methods Eat() Animal's eat method. void 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. Eat(string) Feed the animal with some food void Eat(string food) Parameters food string Food to eat" - }, - "md/CatLibrary.ICat.html": { - "href": "md/CatLibrary.ICat.html", - "title": "Interface ICat | docfx seed website", - "keywords": "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" - }, - "md/CatLibrary.ICatExtension.html": { - "href": "md/CatLibrary.ICatExtension.html", - "title": "Class ICatExtension | docfx seed website", - "keywords": "Class ICatExtension 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." - }, - "md/CatLibrary.MRefDelegate-3.html": { - "href": "md/CatLibrary.MRefDelegate-3.html", - "title": "Delegate MRefDelegate | docfx seed website", - "keywords": "Delegate MRefDelegate Namespace: CatLibrary Assembly: CatLibrary.dll Generic delegate with many constrains. public delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable Parameters k K Type K. t T Type T. l L Type L. Type Parameters K Generic K. T Generic T. L Generic L." - }, - "md/CatLibrary.MRefNormalDelegate.html": { - "href": "md/CatLibrary.MRefNormalDelegate.html", - "title": "Delegate MRefNormalDelegate | docfx seed website", - "keywords": "Delegate MRefNormalDelegate Namespace: CatLibrary Assembly: CatLibrary.dll Delegate in the namespace public delegate void MRefNormalDelegate(List pics, out string name) Parameters pics List a name list of pictures. name string give out the needed name." - }, - "md/CatLibrary.Tom.html": { - "href": "md/CatLibrary.Tom.html", - "title": "Class Tom | docfx seed website", - "keywords": "Class Tom Namespace: CatLibrary Assembly: CatLibrary.dll Tom class is only inherit from Object. Not any member inside itself. public class Tom Inheritance object ← Tom Derived TomFromBaseClass Inherited Members object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Methods TomMethod(Complex, Tuple) This is a Tom Method with complex type as return public Complex TomMethod(Complex a, Tuple b) Parameters a Complex A complex input b Tuple Another complex input Returns Complex Complex TomFromBaseClass Exceptions NotImplementedException This is not implemented ArgumentException This is the exception to be thrown when implemented CatException This is the exception in current documentation" - }, - "md/CatLibrary.TomFromBaseClass.html": { - "href": "md/CatLibrary.TomFromBaseClass.html", - "title": "Class TomFromBaseClass | docfx seed website", - "keywords": "Class TomFromBaseClass Namespace: CatLibrary Assembly: CatLibrary.dll TomFromBaseClass inherits from @ public class TomFromBaseClass : Tom Inheritance object ← Tom ← TomFromBaseClass Inherited Members Tom.TomMethod(Complex, Tuple), object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString() Constructors TomFromBaseClass(int) This is a #ctor with parameter public TomFromBaseClass(int k) Parameters k int" - }, - "md/CatLibrary.html": { - "href": "md/CatLibrary.html", - "title": "Namespace CatLibrary | docfx seed website", - "keywords": "Namespace CatLibrary Namespaces CatLibrary.Core Classes 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 ICatExtension class CatException Complex ICatExtension 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 Tom Tom class is only inherit from Object. Not any member inside itself. TomFromBaseClass TomFromBaseClass inherits from @ Interfaces IAnimal This is basic interface of all animal. ICat Cat's interface Delegates FakeDelegate Fake delegate MRefDelegate Generic delegate with many constrains. MRefNormalDelegate Delegate in the namespace" - }, - "md/MRef.Demo.Enumeration.ColorType.html": { - "href": "md/MRef.Demo.Enumeration.ColorType.html", - "title": "Enum ColorType | docfx seed website", - "keywords": "Enum ColorType Namespace: MRef.Demo.Enumeration Assembly: CatLibrary.dll Enumeration ColorType public enum ColorType Fields Red = 0 this color is red Blue = 1 blue like river Yellow = 2 yellow comes from desert Remarks Red/Blue/Yellow can become all color you want. See Also object" - }, - "md/MRef.Demo.Enumeration.html": { - "href": "md/MRef.Demo.Enumeration.html", - "title": "Namespace MRef.Demo.Enumeration | docfx seed website", - "keywords": "Namespace MRef.Demo.Enumeration Enums ColorType Enumeration ColorType" - }, - "md/MRef.Demo.html": { - "href": "md/MRef.Demo.html", - "title": "Namespace MRef.Demo | docfx seed website", - "keywords": "Namespace MRef.Demo Namespaces MRef.Demo.Enumeration" - }, - "md/MRef.html": { - "href": "md/MRef.html", - "title": "Namespace MRef | docfx seed website", - "keywords": "Namespace MRef Namespaces MRef.Demo" - }, - "pdf/cover.html": { - "href": "pdf/cover.html", - "title": "DOCFX PDF SAMPLE | docfx seed website", - "keywords": "@media print { @page { margin: 0 !important; } body { -webkit-print-color-adjust: exact; -moz-print-color-adjust: exact; -ms-print-color-adjust: exact; print-color-adjust: exact; } } DOCFX PDF SAMPLE" - }, - "restapi/contacts.html": { - "href": "restapi/contacts.html", - "title": "Contacts | docfx seed website", - "keywords": "Contacts | Improve this Doc View Source get contacts You can get a collection of contacts from your tenant. Required scope: Contacts.Read or Contacts.Write Request GET /contacts?api-version Parameters Name Type Default Notes *api-version 1.6 The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required. Responses Status Code Type Description Samples 200 OK. Indicates success. The results are returned in the response body. Mime type: application/json { \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/Microsoft.DirectoryServices.Contact\", \"value\": [ { \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\", \"deletionTimestamp\": null, \"city\": null, \"companyName\": null, \"country\": null, \"department\": null, \"dirSyncEnabled\": null, \"displayName\": \"Marcus Breyer\", \"facsimileTelephoneNumber\": null, \"givenName\": \"Marcus\", \"jobTitle\": null, \"lastDirSyncTime\": null, \"mail\": \"Marcus@contoso.com\", \"mailNickname\": \"MarcusBreyer\", \"mobile\": null, \"physicalDeliveryOfficeName\": null, \"postalCode\": null, \"provisioningErrors\": [], \"proxyAddresses\": [ \"SMTP:Marcus@contoso.com\" ], \"sipProxyAddress\": null, \"state\": null, \"streetAddress\": null, \"surname\": \"Breyer\", \"telephoneNumber\": null }, { \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"35110b16-360c-4c4a-93b2-03f065fabd93\", \"deletionTimestamp\": null, \"city\": null, \"companyName\": null, \"country\": null, \"department\": null, \"dirSyncEnabled\": null, \"displayName\": \"Yossi Ran\", \"facsimileTelephoneNumber\": null, \"givenName\": \"Yossi\", \"jobTitle\": null, \"lastDirSyncTime\": null, \"mail\": \"Yossi@contoso.com\", \"mailNickname\": \"YossiRan\", \"mobile\": null, \"physicalDeliveryOfficeName\": null, \"postalCode\": null, \"provisioningErrors\": [], \"proxyAddresses\": [ \"SMTP:Yossi@contoso.com\" ], \"sipProxyAddress\": null, \"state\": null, \"streetAddress\": null, \"surname\": \"Ran\", \"telephoneNumber\": null }, { \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"7163f3b8-70c9-43d2-b9e1-4467ddaf087a\", \"deletionTimestamp\": null, \"city\": null, \"companyName\": null, \"country\": null, \"department\": null, \"dirSyncEnabled\": null, \"displayName\": \"Jeremy Nelson\", \"facsimileTelephoneNumber\": null, \"givenName\": \"Jeremy\", \"jobTitle\": null, \"lastDirSyncTime\": null, \"mail\": \"Jeremy@contoso.com\", \"mailNickname\": \"JeremyNelson\", \"mobile\": null, \"physicalDeliveryOfficeName\": null, \"postalCode\": null, \"provisioningErrors\": [], \"proxyAddresses\": [ \"SMTP:Jeremy@contoso.com\" ], \"sipProxyAddress\": null, \"state\": null, \"streetAddress\": null, \"surname\": \"Nelson\", \"telephoneNumber\": null }, { \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"83234b5c-3a10-4108-8f36-39b1addadfdb\", \"deletionTimestamp\": null, \"city\": null, \"companyName\": null, \"country\": null, \"department\": null, \"dirSyncEnabled\": null, \"displayName\": \"David Strome\", \"facsimileTelephoneNumber\": null, \"givenName\": \"David\", \"jobTitle\": null, \"lastDirSyncTime\": null, \"mail\": \"David@contoso.com\", \"mailNickname\": \"DavidStrome\", \"mobile\": null, \"physicalDeliveryOfficeName\": null, \"postalCode\": null, \"provisioningErrors\": [], \"proxyAddresses\": [ \"SMTP:David@contoso.com\" ], \"sipProxyAddress\": null, \"state\": null, \"streetAddress\": null, \"surname\": \"Strome\", \"telephoneNumber\": null }, { \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"8c1315ce-bf6f-4e26-b24f-c830606ef41c\", \"deletionTimestamp\": null, \"city\": null, \"companyName\": null, \"country\": null, \"department\": null, \"dirSyncEnabled\": null, \"displayName\": \"Holly Holt\", \"facsimileTelephoneNumber\": null, \"givenName\": \"Holly\", \"jobTitle\": null, \"lastDirSyncTime\": null, \"mail\": \"Holly@contoso.com\", \"mailNickname\": \"HollyHolt\", \"mobile\": null, \"physicalDeliveryOfficeName\": null, \"postalCode\": null, \"provisioningErrors\": [], \"proxyAddresses\": [ \"SMTP:Holly@contoso.com\" ], \"sipProxyAddress\": null, \"state\": null, \"streetAddress\": null, \"surname\": \"Holt\", \"telephoneNumber\": null } ] } | Improve this Doc View Source get contact by id Get a contact by using the object ID. Required scope: Contacts.Read or Contacts.Write Request GET /contacts/{object_id}?api-version Parameters Name Type Default Notes *object_id 31944231-fd52-4a7f-b32e-7902a01fddf9 The object ID (GUID) of the target contact. *api-version 1.6 Specifies the version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required. Responses Status Code Type Description Samples 200 OK. Indicates success. The contact is returned in the response body. Mime type: application/json { \"odata.metadata\": \"https://graph.windows.net/graphdir1.onmicrosoft.com/$metadata#directoryObjects/Microsoft.DirectoryServices.Contact/@Element\", \"odata.type\": \"Microsoft.DirectoryServices.Contact\", \"objectType\": \"Contact\", \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\", \"deletionTimestamp\": null, \"city\": null, \"companyName\": null, \"country\": null, \"department\": null, \"dirSyncEnabled\": null, \"displayName\": \"Marcus Breyer\", \"facsimileTelephoneNumber\": null, \"givenName\": \"Marcus\", \"jobTitle\": null, \"lastDirSyncTime\": null, \"mail\": \"Marcus@contoso.com\", \"mailNickname\": \"MarcusBreyer\", \"mobile\": null, \"physicalDeliveryOfficeName\": null, \"postalCode\": null, \"provisioningErrors\": [], \"proxyAddresses\": [ \"SMTP:Marcus@contoso.com\" ], \"sipProxyAddress\": null, \"state\": null, \"streetAddress\": null, \"surname\": \"Breyer\", \"telephoneNumber\": null } | Improve this Doc View Source update contact Change a contact's properties. Required scope: Contacts.Write Request PATCH /contacts/{object_id}?api-version Parameters Name Type Default Notes *object_id 7163f3b8-70c9-43d2-b9e1-4467ddaf087a The object ID (GUID) of the target contact. *api-version 1.6 The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required. bodyparam contact this is request body, not real parameter Responses Status Code Type Description Samples 204 No Content. Indicates success. No response body is returned. | Improve this Doc View Source delete contact Delete a contact. Required scope: Contacts.Write Request DELETE /contacts/{object_id}[?api-version] Parameters Name Type Default Notes *object_id 7163f3b8-70c9-43d2-b9e1-4467ddaf087a The object ID (GUID) of the target contact. api-version 1.6 Specifies the version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required. Responses Status Code Type Description Samples 204 No Content. Indicates success. | Improve this Doc View Source get contact manager link Get a link to the contact's manager. Required scope: Contacts.Read or Contacts.Write Request GET /contacts/{object_id}/$links/manager?api-version Parameters Name Type Default Notes *object_id 31944231-fd52-4a7f-b32e-7902a01fddf9 The object ID (GUID) of the target contact. *api-version 1.6 The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required. Responses Status Code Type Description Samples 200 OK. Indicates success. A link to the contact's manager is returned. Mime type: application/json { \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/$links/manager\", \"url\": \"https://graph.windows.net/myorganization/directoryObjects/35110b16-360c-4c4a-93b2-03f065fabd93/Microsoft.WindowsAzure.ActiveDirectory.Contact\" } 404 Not Found. The requested resource was not found. This can occur if the manager property is not currently set for the specified contact. It can also have other causes, for example, a bad domain. A code and associated message is returned with the error. Mime type: application/json { \"odata.error\": { \"code\": \"Request_ResourceNotFound\", \"message\": { \"lang\": \"en\", \"value\": \"Resource not found for the segment 'manager'.\" } } } | Improve this Doc View Source update contact manager Update the contact's manager Required scope: Contacts.Write Request PUT /contacts/{object_id}/$links/manager?api-version Parameters Name Type Default Notes *object_id 31944231-fd52-4a7f-b32e-7902a01fddf9 The object ID (GUID) of the target contact. *api-version 1.6 The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required. *bodyparam The request body contains a single property that specifies the URL of the user or contact to add as manager. Responses Status Code Type Description Samples 204 No Content. Indicates success. No response body is returned. | Improve this Doc View Source delete contact manager by id Delete the contact's manager. Required scope: Contacts.Write Request DELETE /contacts/{object_id}/$links/manager?api-version Parameters Name Type Default Notes *object_id 31944231-fd52-4a7f-b32e-7902a01fddf9 The object ID (GUID) of the target contact. *api-version 1.6 The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required. Responses Status Code Type Description Samples 204 No Content. Indicates success. N response body is returned. | Improve this Doc View Source get contact direct reports links Get a links to the contact's direct reports. Required scope: Contacts.Read or Contacts.Write Request GET /contacts/{object_id}/$links/directReports?api-version Parameters Name Type Default Notes *object_id 31944231-fd52-4a7f-b32e-7902a01fddf9 The object ID (GUID) of the target contact. *api-version 1.6 The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required. Responses Status Code Type Description Samples 200 OK. Indicates success. One or more direct reports are returned. Mime type: application/json { \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/$links/directReports\", \"value\": [ { \"url\": \"https://graph.windows.net/myorganization/directoryObjects/8c1315ce-bf6f-4e26-b24f-c830606ef41c/Microsoft.DirectoryServices.Contact\" } ] } | Improve this Doc View Source get contact memberOf links Get a links to the contact's direct group and directory role memberships. Required scope: Contacts.Read or Contacts.Write Request GET /contacts/{object_id}/$links/memberOf?api-version Parameters Name Type Default Notes *object_id 31944231-fd52-4a7f-b32e-7902a01fddf9 The object ID (GUID) of the target contact. *api-version 1.6 The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required. Responses Status Code Type Description Samples 200 OK. Indicates success. One or more groups and/or directory roles are returned. Mime type: application/json { \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/$links/memberOf\", \"value\": [ { \"url\": \"https://graph.windows.net/myorganization/directoryObjects/12345678-b942-47c9-a10e-a4bee353ce60/Microsoft.DirectoryServices.Group\" } ] } Definitions contact Name Type Notes objectType string objectId string deletionTimestamp string (date-time) city string country string department string dirSyncEnabled boolean displayName string facsimileTelephoneNumber string givenName string jobTitle string lastDirSyncTime string (date-time) mail string mailNickname string mobile string physicalDeliveryOfficeName string postalCode string provisioningErrors ProvisioningError[] proxyAddresses array sipProxyAddress string state string streetAddress string surname string telephoneNumber string thumbnailPhoto string ProvisioningError Name Type Notes errorDetail string resolved boolean serviceInstance string timestamp string (date-time)" - }, - "restapi/petstore.html": { - "href": "restapi/petstore.html", - "title": "Pet Store APIs | docfx seed website", - "keywords": "Swagger Petstore Describe APIs in Pet Store pet Description for pet tag | Improve this Doc View Source addPet Add a new pet to the store Request POST /pet Parameters Name Type Default Notes *body Pet Pet object that needs to be added to the store Responses Status Code Type Description Samples 405 Invalid input NOTE: Add pet only when you needs. | Improve this Doc View Source updatePet Update an existing pet Request PUT /pet Parameters Name Type Default Notes *body Pet Pet object that needs to be added to the store Responses Status Code Type Description Samples 400 Invalid ID supplied 404 Pet not found 405 Validation exception | Improve this Doc View Source findPetsByStatus Finds Pets by status Multiple status values can be provided with comma separated strings Request GET /pet/findByStatus?status Parameters Name Type Default Notes *status Status values that need to be considered for filter Responses Status Code Type Description Samples 200 Pet[] successful operation 400 Invalid status value | Improve this Doc View Source findPetsByTags Finds Pets by tags Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing. Request GET /pet/findByTags?tags Parameters Name Type Default Notes *tags Tags to filter by Responses Status Code Type Description Samples 200 Pet[] successful operation 400 Invalid tag value | Improve this Doc View Source deletePet Deletes a pet Request DELETE /pet/{petId} Parameters Name Type Default Notes api_key *petId Pet id to delete Responses Status Code Type Description Samples 400 Invalid ID supplied 404 Pet not found | Improve this Doc View Source getPetById Find pet by ID Returns a single pet Request GET /pet/{petId} Parameters Name Type Default Notes *petId ID of pet to return Responses Status Code Type Description Samples 200 Pet successful operation 400 Invalid ID supplied 404 Pet not found | Improve this Doc View Source updatePetWithForm Updates a pet in the store with form data Request POST /pet/{petId} Parameters Name Type Default Notes *petId ID of pet that needs to be updated name Updated name of the pet status Updated status of the pet Responses Status Code Type Description Samples 405 Invalid input | Improve this Doc View Source uploadFile uploads an image Request POST /pet/{petId}/uploadImage Parameters Name Type Default Notes *petId ID of pet to update additionalMetadata Additional data to pass to server file file to upload Responses Status Code Type Description Samples 200 ApiResponse successful operation store Access to Petstore orders Additional description for store tag | Improve this Doc View Source addPet Add a new pet to the store Request POST /pet Parameters Name Type Default Notes *body Pet Pet object that needs to be added to the store Responses Status Code Type Description Samples 405 Invalid input NOTE: Add pet only when you needs. | Improve this Doc View Source getInventory Returns pet inventories by status Returns a map of status codes to quantities Request GET /store/inventory Responses Status Code Type Description Samples 200 object successful operation | Improve this Doc View Source placeOrder Place an order for a pet Request POST /store/order Parameters Name Type Default Notes *body Order order placed for purchasing the pet Responses Status Code Type Description Samples 200 Order successful operation 400 Invalid Order | Improve this Doc View Source deleteOrder Delete purchase order by ID For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors Request DELETE /store/order/{orderId} Parameters Name Type Default Notes *orderId ID of the order that needs to be deleted Responses Status Code Type Description Samples 400 Invalid ID supplied 404 Order not found | Improve this Doc View Source getOrderById Find purchase order by ID For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions Request GET /store/order/{orderId} Parameters Name Type Default Notes *orderId ID of pet that needs to be fetched Responses Status Code Type Description Samples 200 Order successful operation 400 Invalid ID supplied 404 Order not found user Operations about user | Improve this Doc View Source createUser Create user This can only be done by the logged in user. Request POST /user Parameters Name Type Default Notes *body User Created user object Responses Status Code Type Description Samples default successful operation | Improve this Doc View Source createUsersWithArrayInput Creates list of users with given input array Request POST /user/createWithArray Parameters Name Type Default Notes *body User[] List of user object Responses Status Code Type Description Samples default successful operation | Improve this Doc View Source createUsersWithListInput Creates list of users with given input array Request POST /user/createWithList Parameters Name Type Default Notes *body User[] List of user object Responses Status Code Type Description Samples default successful operation | Improve this Doc View Source loginUser Logs user into the system Request GET /user/login?username&password Parameters Name Type Default Notes *username The user name for login *password The password for login in clear text Responses Status Code Type Description Samples 200 string successful operation 400 Invalid username/password supplied | Improve this Doc View Source logoutUser Logs out current logged in user session Request GET /user/logout Responses Status Code Type Description Samples default successful operation | Improve this Doc View Source deleteUser Delete user This can only be done by the logged in user. Request DELETE /user/{username} Parameters Name Type Default Notes *username The name that needs to be deleted Responses Status Code Type Description Samples 400 Invalid username supplied 404 User not found | Improve this Doc View Source getUserByName Get user by user name Request GET /user/{username} Parameters Name Type Default Notes *username The name that needs to be fetched. Use user1 for testing. Responses Status Code Type Description Samples 200 User successful operation 400 Invalid username supplied 404 User not found Other APIs | Improve this Doc View Source updateUser Updated user This can only be done by the logged in user. Request PUT /user/{username} Parameters Name Type Default Notes *username name that need to be updated *body User Updated user object Responses Status Code Type Description Samples 400 Invalid user supplied 404 User not found Definitions Pet Name Type Notes category Category[] id integer (int64) name string photoUrls array status string pet status in the store tags Tag[] Category Name Type Notes id integer (int64) name string Tag Name Type Notes id integer (int64) name string ApiResponse Name Type Notes code integer (int32) message string type string Order Name Type Notes complete boolean id integer (int64) petId integer (int64) quantity integer (int32) shipDate string (date-time) status string Order Status User Name Type Notes email string firstName string id integer (int64) lastName string password string phone string userStatus integer (int32) User Status username string See Alsos See other REST APIs: Contacts API" - } -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.Class1.html.view.verified.json deleted file mode 100644 index 3460ed10bef..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.Class1.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromAssembly
      \nAssembly: BuildFromAssembly.dll

      \n

      This is a test class.

      \n
      public class Class1\n
      \n

      Inheritance

      \n

      object ←\nClass1

      \n

      Inherited Members

      \n

      object.GetType(),\nobject.MemberwiseClone(),\nobject.ToString(),\nobject.Equals(object?),\nobject.Equals(object?, object?),\nobject.ReferenceEquals(object?, object?),\nobject.GetHashCode()

      \n

      Constructors

      \n

      Class1()

      \n
      public Class1()\n
      \n

      Methods

      \n

      HelloWorld()

      \n

      Hello World.

      \n
      public static void HelloWorld()\n
      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromAssembly.Class1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromAssembly.Class1.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromAssembly.Class1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Class1

      ", - "title": " Class Class1", - "wordCount": 39.0, - "_key": "obj/md/BuildFromAssembly.Class1.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromAssembly.Class1.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromAssembly.Class1.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.Issue5432.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.Issue5432.html.view.verified.json deleted file mode 100644 index 47dc63d6e95..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.Issue5432.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromAssembly
      \nAssembly: BuildFromAssembly.dll

      \n
      public struct Issue5432\n
      \n

      Inherited Members

      \n

      object.GetType(),\nobject.ToString(),\nobject.Equals(object?),\nobject.Equals(object?, object?),\nobject.ReferenceEquals(object?, object?),\nobject.GetHashCode()

      \n

      Properties

      \n

      Name

      \n
      public string Name { get; }\n
      \n

      Property Value

      \n

      string

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromAssembly.Issue5432.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromAssembly.Issue5432.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromAssembly.Issue5432.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Struct Issue5432

      ", - "title": " Struct Issue5432", - "wordCount": 28.0, - "_key": "obj/md/BuildFromAssembly.Issue5432.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromAssembly.Issue5432.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromAssembly.Issue5432.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.html.view.verified.json deleted file mode 100644 index d0bb1aac096..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Classes

      \n

      Class1

      \n

      This is a test class.

      \n

      Structs

      \n

      Issue5432

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromAssembly.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromAssembly.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromAssembly.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Namespace BuildFromAssembly

      ", - "title": " Namespace BuildFromAssembly", - "wordCount": 9.0, - "_key": "obj/md/BuildFromAssembly.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromAssembly.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromAssembly.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.CSharp.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.CSharp.html.view.verified.json deleted file mode 100644 index 9ec4f6a5317..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.CSharp.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromCSharpSourceCode

      \n
      public class CSharp\n
      \n

      Inheritance

      \n

      object ←\nCSharp

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      Main(string[])

      \n
      public static void Main(string[] args)\n
      \n

      Parameters

      \n

      args string[]

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromCSharpSourceCode.CSharp.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromCSharpSourceCode.CSharp.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromCSharpSourceCode.CSharp.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class CSharp

      ", - "title": " Class CSharp", - "wordCount": 30.0, - "_key": "obj/md/BuildFromCSharpSourceCode.CSharp.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromCSharpSourceCode.CSharp.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromCSharpSourceCode.CSharp.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.html.view.verified.json deleted file mode 100644 index 2e0f2e5d4a5..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Classes

      \n

      CSharp

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromCSharpSourceCode.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromCSharpSourceCode.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromCSharpSourceCode.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Namespace BuildFromCSharpSourceCode

      ", - "title": " Namespace BuildFromCSharpSourceCode", - "wordCount": 2.0, - "_key": "obj/md/BuildFromCSharpSourceCode.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromCSharpSourceCode.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromCSharpSourceCode.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.IIssue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.IIssue8948.html.view.verified.json deleted file mode 100644 index 8b5f9a4cc0f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.IIssue8948.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public interface Class1.IIssue8948\n
      \n

      Methods

      \n

      DoNothing<T>()

      \n

      Does nothing with generic type T.

      \n
      void DoNothing<T>()\n
      \n

      Type Parameters

      \n

      T

      \n

      A generic type.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.IIssue8948.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Class1.IIssue8948.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.IIssue8948.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Interface Class1.IIssue8948

      ", - "title": " Interface Class1.IIssue8948", - "wordCount": 23.0, - "_key": "obj/md/BuildFromProject.Class1.IIssue8948.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Class1.IIssue8948.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Class1.IIssue8948.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8665.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8665.html.view.verified.json deleted file mode 100644 index 8d58e3a9d8a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8665.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public class Class1.Issue8665\n
      \n

      Inheritance

      \n

      object ←\nClass1.Issue8665

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Constructors

      \n

      Issue8665()

      \n
      public Issue8665()\n
      \n

      Issue8665(int)

      \n
      public Issue8665(int foo)\n
      \n

      Parameters

      \n

      foo int

      \n

      Issue8665(int, char)

      \n
      public Issue8665(int foo, char bar)\n
      \n

      Parameters

      \n

      foo int

      \n

      bar char

      \n

      Issue8665(int, char, string)

      \n
      public Issue8665(int foo, char bar, string baz)\n
      \n

      Parameters

      \n

      foo int

      \n

      bar char

      \n

      baz string

      \n

      Properties

      \n

      Bar

      \n
      public char Bar { get; }\n
      \n

      Property Value

      \n

      char

      \n

      Baz

      \n
      public string Baz { get; }\n
      \n

      Property Value

      \n

      string

      \n

      Foo

      \n
      public int Foo { get; }\n
      \n

      Property Value

      \n

      int

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.Issue8665.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Class1.Issue8665.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.Issue8665.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Class1.Issue8665

      ", - "title": " Class Class1.Issue8665", - "wordCount": 93.0, - "_key": "obj/md/BuildFromProject.Class1.Issue8665.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Class1.Issue8665.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Class1.Issue8665.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json deleted file mode 100644 index 3a107de74a9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public class Class1.Issue8696Attribute : Attribute\n
      \n

      Inheritance

      \n

      object ←\nAttribute ←\nClass1.Issue8696Attribute

      \n

      Inherited Members

      \n

      Attribute.Equals(object?),\nAttribute.GetCustomAttribute(Assembly, Type),\nAttribute.GetCustomAttribute(Assembly, Type, bool),\nAttribute.GetCustomAttribute(MemberInfo, Type),\nAttribute.GetCustomAttribute(MemberInfo, Type, bool),\nAttribute.GetCustomAttribute(Module, Type),\nAttribute.GetCustomAttribute(Module, Type, bool),\nAttribute.GetCustomAttribute(ParameterInfo, Type),\nAttribute.GetCustomAttribute(ParameterInfo, Type, bool),\nAttribute.GetCustomAttributes(Assembly),\nAttribute.GetCustomAttributes(Assembly, bool),\nAttribute.GetCustomAttributes(Assembly, Type),\nAttribute.GetCustomAttributes(Assembly, Type, bool),\nAttribute.GetCustomAttributes(MemberInfo),\nAttribute.GetCustomAttributes(MemberInfo, bool),\nAttribute.GetCustomAttributes(MemberInfo, Type),\nAttribute.GetCustomAttributes(MemberInfo, Type, bool),\nAttribute.GetCustomAttributes(Module),\nAttribute.GetCustomAttributes(Module, bool),\nAttribute.GetCustomAttributes(Module, Type),\nAttribute.GetCustomAttributes(Module, Type, bool),\nAttribute.GetCustomAttributes(ParameterInfo),\nAttribute.GetCustomAttributes(ParameterInfo, bool),\nAttribute.GetCustomAttributes(ParameterInfo, Type),\nAttribute.GetCustomAttributes(ParameterInfo, Type, bool),\nAttribute.GetHashCode(),\nAttribute.IsDefaultAttribute(),\nAttribute.IsDefined(Assembly, Type),\nAttribute.IsDefined(Assembly, Type, bool),\nAttribute.IsDefined(MemberInfo, Type),\nAttribute.IsDefined(MemberInfo, Type, bool),\nAttribute.IsDefined(Module, Type),\nAttribute.IsDefined(Module, Type, bool),\nAttribute.IsDefined(ParameterInfo, Type),\nAttribute.IsDefined(ParameterInfo, Type, bool),\nAttribute.Match(object?),\nAttribute.TypeId,\nobject.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Constructors

      \n

      Issue8696Attribute(string?, int, int, string[]?, bool, Type?)

      \n
      [Class1.Issue8696("Changes the name of the server in the server list", 0, 0, null, false, null)]\npublic Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)\n
      \n

      Parameters

      \n

      description string?

      \n

      boundsMin int

      \n

      boundsMax int

      \n

      validGameModes string[]?

      \n

      hasMultipleSelections bool

      \n

      enumType Type?

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.Issue8696Attribute.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Class1.Issue8696Attribute.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.Issue8696Attribute.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Class1.Issue8696Attribute

      ", - "title": " Class Class1.Issue8696Attribute", - "wordCount": 162.0, - "_key": "obj/md/BuildFromProject.Class1.Issue8696Attribute.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Class1.Issue8696Attribute.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Class1.Issue8696Attribute.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8948.html.view.verified.json deleted file mode 100644 index 4e9fcd084ff..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8948.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public class Class1.Issue8948 : Class1.IIssue8948\n
      \n

      Inheritance

      \n

      object ←\nClass1.Issue8948

      \n

      Implements

      \n

      Class1.IIssue8948

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      DoNothing<T>()

      \n

      Does nothing with generic type T.

      \n
      public void DoNothing<T>()\n
      \n

      Type Parameters

      \n

      T

      \n

      A generic type.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.Issue8948.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Class1.Issue8948.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.Issue8948.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Class1.Issue8948

      ", - "title": " Class Class1.Issue8948", - "wordCount": 42.0, - "_key": "obj/md/BuildFromProject.Class1.Issue8948.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Class1.Issue8948.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Class1.Issue8948.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue9260.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue9260.html.view.verified.json deleted file mode 100644 index 9b3c9835a3f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue9260.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public enum Class1.Issue9260\n
      \n

      Fields

      \n

      Value = 0

      \n

      This is a regular enum value.

      \n

      This is a remarks section. Very important remarks about Value go here.

      \n

      OldAndUnusedValue = 1

      \n

      This is old and unused. You shouldn't use it anymore.

      \n

      Don't use this, seriously! Use Value instead.

      \n

      OldAndUnusedValue2 = 2

      \n

      This is old and unused. You shouldn't use it anymore.

      \n

      Don't use this, seriously! Use Value instead.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.Issue9260.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Class1.Issue9260.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.Issue9260.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Enum Class1.Issue9260

      ", - "title": " Enum Class1.Issue9260", - "wordCount": 69.0, - "_key": "obj/md/BuildFromProject.Class1.Issue9260.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Class1.Issue9260.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Class1.Issue9260.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Test-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Test-1.html.view.verified.json deleted file mode 100644 index 75148212e1b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Test-1.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public class Class1.Test<T>\n
      \n

      Type Parameters

      \n

      T

      \n

      Inheritance

      \n

      object ←\nClass1.Test<T>

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.Test-1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Class1.Test-1.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.Test-1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Class1.Test<T>

      ", - "title": " Class Class1.Test", - "wordCount": 25.0, - "_key": "obj/md/BuildFromProject.Class1.Test-1.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Class1.Test-1.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Class1.Test-1.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.html.view.verified.json deleted file mode 100644 index 212a4efd751..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public class Class1 : IClass1\n
      \n

      Inheritance

      \n

      object ←\nClass1

      \n

      Implements

      \n

      IClass1

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      Issue1651()

      \n

      Pricing models are used to calculate theoretical option values

      \n
      • 1Black Scholes
      • 2Black76
      • 3Black76Fut
      • 4Equity Tree
      • 5Variance Swap
      • 6Dividend Forecast
      \n
      public void Issue1651()\n
      \n

      Issue1887()

      \n

      IConfiguration related helper and extension routines.

      \n
      public void Issue1887()\n
      \n

      Issue2623()

      \n
      public void Issue2623()\n
      \n

      Examples

      \n
      MyClass myClass = new MyClass();\n\nvoid Update()\n{\n    myClass.Execute();\n}\n
      \n

      Remarks

      \n

      For example:

      \n
      MyClass myClass = new MyClass();\n\nvoid Update()\n{\n    myClass.Execute();\n}\n
      \n

      Issue2723()

      \n
      public void Issue2723()\n
      \n

      Remarks

      \n
      \n
      Note
      \n

      This is a <note>. & " '

      \n
      \n

      Inline <angle brackets>.

      \n

      link

      \n
      for (var i = 0; i > 10; i++) // & " '\nvar range = new Range<int> { Min = 0, Max = 10 };\n
      \n
      var range = new Range<int> { Min = 0, Max = 10 };
      \n

      Issue4017()

      \n
      public void Issue4017()\n
      \n

      Examples

      \n
      public void HookMessageDeleted(BaseSocketClient client)\n{\n    client.MessageDeleted += HandleMessageDelete;\n}\n\npublic Task HandleMessageDelete(Cacheable<IMessage, ulong> cachedMessage, ISocketMessageChannel channel)\n{\n    // check if the message exists in cache; if not, we cannot report what was removed\n    if (!cachedMessage.HasValue) return;\n    var message = cachedMessage.Value;\n    Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\"\n        + Environment.NewLine\n        + message.Content);\n    return Task.CompletedTask;\n}
      \n

      Remarks

      \n
      void Update()\n{\n    myClass.Execute();\n}
      \n

      Issue4392()

      \n
      public void Issue4392()\n
      \n

      Remarks

      \n

      @"\\\\?\\"

      \n

      Issue7484()

      \n
      public void Issue7484()\n
      \n

      Remarks

      \n

      There's really no reason to not believe that this class can test things.

      \n
      TermDescription
      A TermA Description
      Bee TermBee Description
      \n

      Issue8764<T>()

      \n
      public void Issue8764<T>() where T : unmanaged\n
      \n

      Type Parameters

      \n

      T

      \n

      Issue896()

      \n

      Test

      \n
      public void Issue896()\n
      \n

      See Also

      \n

      Class1.Test<T>,\nClass1

      \n

      Issue9216()

      \n

      Calculates the determinant of a 3-dimensional matrix:

      \n

      \\(A = \\begin{vmatrix} a_{11} & a_{12} & a_{13} \\\\ a_{21} & a_{22} & a_{23} \\\\ a_{31} & a_{32} & a_{33} \\end{vmatrix}\\)

      \n

      Returns the smallest value:

      \n

      \\(\\left\\{\\begin{matrix}a, a<b \\\\ b, b>a\\\\ \\end{matrix} \\right.\\)

      \n
      public static double Issue9216()\n
      \n

      Returns

      \n

      double

      \n

      XmlCommentIncludeTag()

      \n

      This method should do something...

      \n
      public void XmlCommentIncludeTag()\n
      \n

      Remarks

      \n

      This is remarks.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Class1.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Class1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Class1

      ", - "title": " Class Class1", - "wordCount": 333.0, - "_key": "obj/md/BuildFromProject.Class1.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Class1.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Class1.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Dog.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Dog.html.view.verified.json deleted file mode 100644 index efce27d0012..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Dog.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n

      Class representing a dog.

      \n
      public class Dog\n
      \n

      Inheritance

      \n

      object ←\nDog

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Constructors

      \n

      Dog(string, int)

      \n

      Constructor.

      \n
      public Dog(string name, int age)\n
      \n

      Parameters

      \n

      name string

      \n

      Name of the dog.

      \n

      age int

      \n

      Age of the dog.

      \n

      Properties

      \n

      Age

      \n

      Age of the dog.

      \n
      public int Age { get; }\n
      \n

      Property Value

      \n

      int

      \n

      Name

      \n

      Name of the dog.

      \n
      public string Name { get; }\n
      \n

      Property Value

      \n

      string

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Dog.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Dog.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Dog.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Dog

      ", - "title": " Class Dog", - "wordCount": 77.0, - "_key": "obj/md/BuildFromProject.Dog.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Dog.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Dog.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.IInheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.IInheritdoc.html.view.verified.json deleted file mode 100644 index fc6eb4150fd..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.IInheritdoc.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public interface IInheritdoc\n
      \n

      Methods

      \n

      Issue7629()

      \n

      This method should do something...

      \n
      void Issue7629()\n
      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.IInheritdoc.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.IInheritdoc.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.IInheritdoc.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Interface IInheritdoc

      ", - "title": " Interface IInheritdoc", - "wordCount": 16.0, - "_key": "obj/md/BuildFromProject.IInheritdoc.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.IInheritdoc.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.IInheritdoc.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json deleted file mode 100644 index 996580fefd5..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public abstract class Inheritdoc.Issue6366.Class1<T>\n
      \n

      Type Parameters

      \n

      T

      \n

      Inheritance

      \n

      object ←\nInheritdoc.Issue6366.Class1<T>

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      TestMethod1(T, int)

      \n

      This text inherited.

      \n
      public abstract T TestMethod1(T parm1, int parm2)\n
      \n

      Parameters

      \n

      parm1 T

      \n

      This text NOT inherited.

      \n

      parm2 int

      \n

      This text inherited.

      \n

      Returns

      \n

      T

      \n

      This text inherited.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Inheritdoc.Issue6366.Class1<T>

      ", - "title": " Class Inheritdoc.Issue6366.Class1", - "wordCount": 56.0, - "_key": "obj/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json deleted file mode 100644 index db4ffc59f5b..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1<bool>\n
      \n

      Inheritance

      \n

      object ←\nInheritdoc.Issue6366.Class1<bool> ←\nInheritdoc.Issue6366.Class2

      \n

      Inherited Members

      \n

      Inheritdoc.Issue6366.Class1<bool>.TestMethod1(bool, int),\nobject.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      TestMethod1(bool, int)

      \n

      This text inherited.

      \n
      public override bool TestMethod1(bool parm1, int parm2)\n
      \n

      Parameters

      \n

      parm1 bool

      \n

      This text NOT inherited.

      \n

      parm2 int

      \n

      This text inherited.

      \n

      Returns

      \n

      bool

      \n

      This text inherited.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue6366.Class2.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Inheritdoc.Issue6366.Class2.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue6366.Class2.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Inheritdoc.Issue6366.Class2

      ", - "title": " Class Inheritdoc.Issue6366.Class2", - "wordCount": 57.0, - "_key": "obj/md/BuildFromProject.Inheritdoc.Issue6366.Class2.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue6366.Class2.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json deleted file mode 100644 index d3e5c2760ad..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public class Inheritdoc.Issue6366\n
      \n

      Inheritance

      \n

      object ←\nInheritdoc.Issue6366

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue6366.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Inheritdoc.Issue6366.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue6366.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Inheritdoc.Issue6366

      ", - "title": " Class Inheritdoc.Issue6366", - "wordCount": 22.0, - "_key": "obj/md/BuildFromProject.Inheritdoc.Issue6366.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Inheritdoc.Issue6366.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue6366.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json deleted file mode 100644 index d9eadb5a71e..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public class Inheritdoc.Issue7035\n
      \n

      Inheritance

      \n

      object ←\nInheritdoc.Issue7035

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      A()

      \n
      public void A()\n
      \n

      B()

      \n
      public void B()\n
      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue7035.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Inheritdoc.Issue7035.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue7035.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Inheritdoc.Issue7035

      ", - "title": " Class Inheritdoc.Issue7035", - "wordCount": 31.0, - "_key": "obj/md/BuildFromProject.Inheritdoc.Issue7035.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Inheritdoc.Issue7035.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue7035.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json deleted file mode 100644 index 420ddeef522..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n

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

      \n
      public class Inheritdoc.Issue7484\n
      \n

      Inheritance

      \n

      object ←\nInheritdoc.Issue7484

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Remarks

      \n

      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

      \n

      Issue7484()

      \n

      This is a constructor to document.

      \n
      public Issue7484()\n
      \n

      Properties

      \n

      DoDad

      \n

      A string that could have something.

      \n
      public string DoDad { get; }\n
      \n

      Property Value

      \n

      string

      \n

      Methods

      \n

      BoolReturningMethod(bool)

      \n

      Simple method to generate docs for.

      \n
      public bool BoolReturningMethod(bool source)\n
      \n

      Parameters

      \n

      source bool

      \n

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

      \n

      Returns

      \n

      bool

      \n

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

      \n

      Remarks

      \n

      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", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue7484.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Inheritdoc.Issue7484.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue7484.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Inheritdoc.Issue7484

      ", - "title": " Class Inheritdoc.Issue7484", - "wordCount": 148.0, - "_key": "obj/md/BuildFromProject.Inheritdoc.Issue7484.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Inheritdoc.Issue7484.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue7484.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json deleted file mode 100644 index b67bfc0e0b9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public class Inheritdoc.Issue8101\n
      \n

      Inheritance

      \n

      object ←\nInheritdoc.Issue8101

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      Tween(float, float, float, Action<float>)

      \n

      Create a new tween.

      \n
      public static object Tween(float from, float to, float duration, Action<float> onChange)\n
      \n

      Parameters

      \n

      from float

      \n

      The starting value.

      \n

      to float

      \n

      The end value.

      \n

      duration float

      \n

      Total tween duration in seconds.

      \n

      onChange Action<float>

      \n

      A callback that will be invoked every time the tween value changes.

      \n

      Returns

      \n

      object

      \n

      The newly created tween instance.

      \n

      Tween(int, int, float, Action<int>)

      \n

      Create a new tween.

      \n
      public static object Tween(int from, int to, float duration, Action<int> onChange)\n
      \n

      Parameters

      \n

      from int

      \n

      The starting value.

      \n

      to int

      \n

      The end value.

      \n

      duration float

      \n

      Total tween duration in seconds.

      \n

      onChange Action<int>

      \n

      A callback that will be invoked every time the tween value changes.

      \n

      Returns

      \n

      object

      \n

      The newly created tween instance.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue8101.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Inheritdoc.Issue8101.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue8101.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Inheritdoc.Issue8101

      ", - "title": " Class Inheritdoc.Issue8101", - "wordCount": 143.0, - "_key": "obj/md/BuildFromProject.Inheritdoc.Issue8101.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Inheritdoc.Issue8101.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue8101.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json deleted file mode 100644 index 4a5e3e7cc40..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public struct Inheritdoc.Issue8129\n
      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Constructors

      \n

      Issue8129(string)

      \n
      public Issue8129(string foo)\n
      \n

      Parameters

      \n

      foo string

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue8129.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Inheritdoc.Issue8129.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue8129.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Struct Inheritdoc.Issue8129

      ", - "title": " Struct Inheritdoc.Issue8129", - "wordCount": 25.0, - "_key": "obj/md/BuildFromProject.Inheritdoc.Issue8129.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Inheritdoc.Issue8129.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Inheritdoc.Issue8129.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.html.view.verified.json deleted file mode 100644 index 563d9a204a2..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n
      public class Inheritdoc : IInheritdoc, IDisposable\n
      \n

      Inheritance

      \n

      object ←\nInheritdoc

      \n

      Implements

      \n

      IInheritdoc,\nIDisposable

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      Dispose()

      \n

      Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

      \n
      public void Dispose()\n
      \n

      Issue7628()

      \n

      This method should do something...

      \n
      public void Issue7628()\n
      \n

      Issue7629()

      \n

      This method should do something...

      \n
      public void Issue7629()\n
      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Inheritdoc.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Inheritdoc.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Inheritdoc

      ", - "title": " Class Inheritdoc", - "wordCount": 61.0, - "_key": "obj/md/BuildFromProject.Inheritdoc.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Inheritdoc.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Inheritdoc.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.A.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.A.html.view.verified.json deleted file mode 100644 index 39dbf7800a0..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.A.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject.Issue8540.A
      \nAssembly: BuildFromProject.dll

      \n
      public class A\n
      \n

      Inheritance

      \n

      object ←\nA

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8540.A.A.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Issue8540.A.A.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8540.A.A.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class A

      ", - "title": " Class A", - "wordCount": 22.0, - "_key": "obj/md/BuildFromProject.Issue8540.A.A.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Issue8540.A.A.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Issue8540.A.A.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.html.view.verified.json deleted file mode 100644 index 280899b2843..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Classes

      \n

      A

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8540.A.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Issue8540.A.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8540.A.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Namespace BuildFromProject.Issue8540.A

      ", - "title": " Namespace BuildFromProject.Issue8540.A", - "wordCount": 2.0, - "_key": "obj/md/BuildFromProject.Issue8540.A.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Issue8540.A.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Issue8540.A.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.B.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.B.html.view.verified.json deleted file mode 100644 index 7188c8273ba..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.B.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject.Issue8540.B
      \nAssembly: BuildFromProject.dll

      \n
      public class B\n
      \n

      Inheritance

      \n

      object ←\nB

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8540.B.B.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Issue8540.B.B.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8540.B.B.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class B

      ", - "title": " Class B", - "wordCount": 22.0, - "_key": "obj/md/BuildFromProject.Issue8540.B.B.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Issue8540.B.B.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Issue8540.B.B.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.html.view.verified.json deleted file mode 100644 index 542cca2d67f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Classes

      \n

      B

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8540.B.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Issue8540.B.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8540.B.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Namespace BuildFromProject.Issue8540.B

      ", - "title": " Namespace BuildFromProject.Issue8540.B", - "wordCount": 2.0, - "_key": "obj/md/BuildFromProject.Issue8540.B.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Issue8540.B.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Issue8540.B.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.html.view.verified.json deleted file mode 100644 index ab347706e03..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespaces

      \n

      BuildFromProject.Issue8540.A

      \n

      BuildFromProject.Issue8540.B

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8540.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Issue8540.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8540.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Namespace BuildFromProject.Issue8540

      ", - "title": " Namespace BuildFromProject.Issue8540", - "wordCount": 3.0, - "_key": "obj/md/BuildFromProject.Issue8540.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Issue8540.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Issue8540.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8725.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8725.html.view.verified.json deleted file mode 100644 index 332b05a66fe..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8725.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromProject
      \nAssembly: BuildFromProject.dll

      \n

      A nice class

      \n
      public class Issue8725\n
      \n

      Inheritance

      \n

      object ←\nIssue8725

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      MoreOperations()

      \n

      Another nice operation

      \n
      public void MoreOperations()\n
      \n

      MyOperation()

      \n

      A nice operation

      \n
      public void MyOperation()\n
      \n

      See Also

      \n

      Class1

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8725.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.Issue8725.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.Issue8725.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Issue8725

      ", - "title": " Class Issue8725", - "wordCount": 43.0, - "_key": "obj/md/BuildFromProject.Issue8725.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.Issue8725.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.Issue8725.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.html.view.verified.json deleted file mode 100644 index 64bd5d2acae..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespaces

      \n

      BuildFromProject.Issue8540

      \n

      Classes

      \n

      Inheritdoc.Issue6366.Class1<T>

      \n

      Class1

      \n

      Inheritdoc.Issue6366.Class2

      \n

      Dog

      \n

      Class representing a dog.

      \n

      Inheritdoc

      \n

      Inheritdoc.Issue6366

      \n

      Inheritdoc.Issue7035

      \n

      Inheritdoc.Issue7484

      \n

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

      \n

      Inheritdoc.Issue8101

      \n

      Class1.Issue8665

      \n

      Class1.Issue8696Attribute

      \n

      Issue8725

      \n

      A nice class

      \n

      Class1.Issue8948

      \n

      Class1.Test<T>

      \n

      Structs

      \n

      Inheritdoc.Issue8129

      \n

      Interfaces

      \n

      IInheritdoc

      \n

      Class1.IIssue8948

      \n

      Enums

      \n

      Class1.Issue9260

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromProject.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromProject.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Namespace BuildFromProject

      ", - "title": " Namespace BuildFromProject", - "wordCount": 43.0, - "_key": "obj/md/BuildFromProject.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromProject.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromProject.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.BaseClass1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.BaseClass1.html.view.verified.json deleted file mode 100644 index 8b2d906c020..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.BaseClass1.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromVBSourceCode

      \n

      This is the BaseClass

      \n
      public abstract class BaseClass1\n
      \n

      Inheritance

      \n

      object ←\nBaseClass1

      \n

      Derived

      \n

      Class1

      \n

      Inherited Members

      \n

      object.Equals(object),\nobject.Equals(object, object),\nobject.Finalize(),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object, object),\nobject.ToString()

      \n

      Methods

      \n

      WithDeclarationKeyword(Class1)

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

      Parameters

      \n

      keyword Class1

      \n

      Returns

      \n

      DateTime

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromVBSourceCode.BaseClass1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromVBSourceCode.BaseClass1.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromVBSourceCode.BaseClass1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class BaseClass1

      ", - "title": " Class BaseClass1", - "wordCount": 40.0, - "_key": "obj/md/BuildFromVBSourceCode.BaseClass1.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromVBSourceCode.BaseClass1.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromVBSourceCode.BaseClass1.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.Class1.html.view.verified.json deleted file mode 100644 index 3abe6f36b33..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.Class1.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: BuildFromVBSourceCode

      \n

      This is summary from vb class...

      \n
      public class Class1 : BaseClass1\n
      \n

      Inheritance

      \n

      object ←\nBaseClass1 ←\nClass1

      \n

      Inherited Members

      \n

      BaseClass1.WithDeclarationKeyword(Class1),\nobject.Equals(object),\nobject.Equals(object, object),\nobject.Finalize(),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object, object),\nobject.ToString()

      \n

      Fields

      \n

      ValueClass

      \n

      This is a Value type

      \n
      public Class1 ValueClass\n
      \n

      Field Value

      \n

      Class1

      \n

      Properties

      \n

      Keyword

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

      Property Value

      \n

      Class1

      \n

      Methods

      \n

      Value(string)

      \n

      This is a Function

      \n
      public int Value(string name)\n
      \n

      Parameters

      \n

      name string

      \n

      Name as the String\nvalue

      \n

      Returns

      \n

      int

      \n

      Returns\nAhooo

      \n

      WithDeclarationKeyword(Class1)

      \n

      What is Sub?

      \n
      public override DateTime WithDeclarationKeyword(Class1 keyword)\n
      \n

      Parameters

      \n

      keyword Class1

      \n

      Returns

      \n

      DateTime

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromVBSourceCode.Class1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromVBSourceCode.Class1.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromVBSourceCode.Class1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Class1

      ", - "title": " Class Class1", - "wordCount": 96.0, - "_key": "obj/md/BuildFromVBSourceCode.Class1.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromVBSourceCode.Class1.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromVBSourceCode.Class1.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.html.view.verified.json deleted file mode 100644 index 7a7bdefb751..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Classes

      \n

      BaseClass1

      \n

      This is the BaseClass

      \n

      Class1

      \n

      This is summary from vb class...

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/BuildFromVBSourceCode.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/BuildFromVBSourceCode.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/BuildFromVBSourceCode.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Namespace BuildFromVBSourceCode

      ", - "title": " Namespace BuildFromVBSourceCode", - "wordCount": 13.0, - "_key": "obj/md/BuildFromVBSourceCode.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/BuildFromVBSourceCode.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/BuildFromVBSourceCode.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Cat-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Cat-2.html.view.verified.json deleted file mode 100644 index c92d698c4cd..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Cat-2.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \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\n
      \n

      Type Parameters

      \n

      T

      \n

      This type should be class and can new instance.

      \n

      K

      \n

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

      \n

      Inheritance

      \n

      object ←\nCat<T, K>

      \n

      Implements

      \n

      ICat,\nIAnimal

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Extension Methods

      \n

      ICatExtension.Play(ICat, ContainersRefType.ColorType),\nICatExtension.Sleep(ICat, long)

      \n

      Examples

      \n

      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

      \n

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

      \n

      Constructors

      \n

      Cat()

      \n

      Default constructor.

      \n
      public Cat()\n
      \n

      Cat(T)

      \n

      Constructor with one generic parameter.

      \n
      public Cat(T ownType)\n
      \n

      Parameters

      \n

      ownType T

      \n

      This parameter type defined by class.

      \n

      Cat(string, out int, string, bool)

      \n

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

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

      Parameters

      \n

      nickName string

      \n

      it's string type.

      \n

      age int

      \n

      It's an out and ref parameter.

      \n

      realName string

      \n

      It's an out paramter.

      \n

      isHealthy bool

      \n

      It's an in parameter.

      \n

      Fields

      \n

      isHealthy

      \n

      Field with attribute.

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

      Field Value

      \n

      bool

      \n

      Properties

      \n

      Age

      \n

      Hint cat's age.

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

      Property Value

      \n

      int

      \n

      Name

      \n

      EII property.

      \n
      public string Name { get; }\n
      \n

      Property Value

      \n

      string

      \n

      this[string]

      \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; }\n
      \n

      Property Value

      \n

      int

      \n

      Methods

      \n

      CalculateFood(DateTime)

      \n

      It's a method with complex return type.

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

      Parameters

      \n

      date DateTime

      \n

      Date time to now.

      \n

      Returns

      \n

      Dictionary<string, List<int>>

      \n

      It's a relationship map of different kind food.

      \n

      Equals(object)

      \n

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

      \n
      public override bool Equals(object obj)\n
      \n

      Parameters

      \n

      obj object

      \n

      Can pass any class type.

      \n

      Returns

      \n

      bool

      \n

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

      \n

      GetTailLength(int*, params object[])

      \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)\n
      \n

      Parameters

      \n

      catName int*

      \n

      Thie represent for cat name length.

      \n

      parameters object[]

      \n

      Optional parameters.

      \n

      Returns

      \n

      long

      \n

      Return cat tail's length.

      \n

      Jump(T, K, ref bool)

      \n

      This method have attribute above it.

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

      Parameters

      \n

      ownType T

      \n

      Type come from class define.

      \n

      anotherOwnType K

      \n

      Type come from class define.

      \n

      cheat bool

      \n

      Hint whether this cat has cheat mode.

      \n

      Exceptions

      \n

      ArgumentException

      \n

      This is an argument exception

      \n

      ownEat

      \n

      Eat event of this cat

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

      Event Type

      \n

      EventHandler

      \n

      Operators

      \n

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

      \n

      Addition operator of this class.

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

      Parameters

      \n

      lsr Cat<T, K>

      \n

      ..

      \n

      rsr int

      \n

      ~~

      \n

      Returns

      \n

      int

      \n

      Result with int type.

      \n

      explicit operator Tom(Cat<T, K>)

      \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)\n
      \n

      Parameters

      \n

      src Cat<T, K>

      \n

      Instance of this class.

      \n

      Returns

      \n

      Tom

      \n

      Advanced class type of cat.

      \n

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

      \n

      Similar with operaotr +, refer to that topic.

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

      Parameters

      \n

      lsr Cat<T, K>

      \n

      rsr int

      \n

      Returns

      \n

      int

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Cat-2.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Cat-2.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Cat-2.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Cat<T, K>

      ", - "title": " Class Cat", - "wordCount": 629.0, - "_key": "obj/md/CatLibrary.Cat-2.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Cat-2.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Cat-2.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.CatException-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.CatException-1.html.view.verified.json deleted file mode 100644 index 88d3713aa3a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.CatException-1.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \n
      public class CatException<T> : Exception, ISerializable\n
      \n

      Type Parameters

      \n

      T

      \n

      Inheritance

      \n

      object ←\nException ←\nCatException<T>

      \n

      Implements

      \n

      ISerializable

      \n

      Inherited Members

      \n

      Exception.GetBaseException(),\nException.GetObjectData(SerializationInfo, StreamingContext),\nException.GetType(),\nException.ToString(),\nException.Data,\nException.HelpLink,\nException.HResult,\nException.InnerException,\nException.Message,\nException.Source,\nException.StackTrace,\nException.TargetSite,\nException.SerializeObjectState,\nobject.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.CatException-1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.CatException-1.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.CatException-1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class CatException<T>

      ", - "title": " Class CatException", - "wordCount": 45.0, - "_key": "obj/md/CatLibrary.CatException-1.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.CatException-1.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.CatException-1.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Complex-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Complex-2.html.view.verified.json deleted file mode 100644 index 2c4868b3d49..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Complex-2.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \n
      public class Complex<T, J>\n
      \n

      Type Parameters

      \n

      T

      \n

      J

      \n

      Inheritance

      \n

      object ←\nComplex<T, J>

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Complex-2.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Complex-2.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Complex-2.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Complex<T, J>

      ", - "title": " Class Complex", - "wordCount": 28.0, - "_key": "obj/md/CatLibrary.Complex-2.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Complex-2.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Complex-2.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json deleted file mode 100644 index c7a8593df73..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary.Core
      \nAssembly: CatLibrary.Core.dll

      \n

      Enumeration ColorType

      \n
      public enum ContainersRefType.ColorType\n
      \n

      Fields

      \n

      Red = 0

      \n

      red

      \n

      Blue = 1

      \n

      blue

      \n

      Yellow = 2

      \n

      yellow

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ColorType.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Core.ContainersRefType.ColorType.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ColorType.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Enum ContainersRefType.ColorType

      ", - "title": " Enum ContainersRefType.ColorType", - "wordCount": 22.0, - "_key": "obj/md/CatLibrary.Core.ContainersRefType.ColorType.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Core.ContainersRefType.ColorType.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ColorType.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json deleted file mode 100644 index 8f433185839..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary.Core
      \nAssembly: CatLibrary.Core.dll

      \n
      public class ContainersRefType.ContainersRefTypeChild\n
      \n

      Inheritance

      \n

      object ←\nContainersRefType.ContainersRefTypeChild

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class ContainersRefType.ContainersRefTypeChild

      ", - "title": " Class ContainersRefType.ContainersRefTypeChild", - "wordCount": 22.0, - "_key": "obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json deleted file mode 100644 index 5f2aa86a0cb..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary.Core
      \nAssembly: CatLibrary.Core.dll

      \n
      public interface ContainersRefType.ContainersRefTypeChildInterface\n
      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Interface ContainersRefType.ContainersRefTypeChildInterface

      ", - "title": " Interface ContainersRefType.ContainersRefTypeChildInterface", - "wordCount": 7.0, - "_key": "obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json deleted file mode 100644 index 56a6e3e7458..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary.Core
      \nAssembly: CatLibrary.Core.dll

      \n

      Delegate ContainersRefTypeDelegate

      \n
      public delegate void ContainersRefType.ContainersRefTypeDelegate()\n
      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Delegate ContainersRefType.ContainersRefTypeDelegate

      ", - "title": " Delegate ContainersRefType.ContainersRefTypeDelegate", - "wordCount": 10.0, - "_key": "obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.html.view.verified.json deleted file mode 100644 index ef925b4ddc7..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary.Core
      \nAssembly: CatLibrary.Core.dll

      \n

      Struct ContainersRefType

      \n
      public struct ContainersRefType\n
      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Extension Methods

      \n

      Issue231.Bar(ContainersRefType),\nIssue231.Foo(ContainersRefType)

      \n

      Fields

      \n

      ColorCount

      \n

      ColorCount

      \n
      public long ColorCount\n
      \n

      Field Value

      \n

      long

      \n

      Properties

      \n

      GetColorCount

      \n

      GetColorCount

      \n
      public long GetColorCount { get; }\n
      \n

      Property Value

      \n

      long

      \n

      Methods

      \n

      ContainersRefTypeNonRefMethod(params object[])

      \n

      ContainersRefTypeNonRefMethod

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

      Parameters

      \n

      parmsArray object[]

      \n

      Returns

      \n

      int

      \n

      ContainersRefTypeEventHandler

      \n
      public event EventHandler ContainersRefTypeEventHandler\n
      \n

      Event Type

      \n

      EventHandler

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ContainersRefType.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Core.ContainersRefType.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ContainersRefType.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Struct ContainersRefType

      ", - "title": " Struct ContainersRefType", - "wordCount": 68.0, - "_key": "obj/md/CatLibrary.Core.ContainersRefType.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Core.ContainersRefType.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Core.ContainersRefType.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json deleted file mode 100644 index 2981ae4cf33..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary.Core
      \nAssembly: CatLibrary.Core.dll

      \n
      public class ExplicitLayoutClass\n
      \n

      Inheritance

      \n

      object ←\nExplicitLayoutClass

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ExplicitLayoutClass.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Core.ExplicitLayoutClass.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.ExplicitLayoutClass.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class ExplicitLayoutClass

      ", - "title": " Class ExplicitLayoutClass", - "wordCount": 22.0, - "_key": "obj/md/CatLibrary.Core.ExplicitLayoutClass.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Core.ExplicitLayoutClass.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Core.ExplicitLayoutClass.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.Issue231.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.Issue231.html.view.verified.json deleted file mode 100644 index 27308492b4a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.Issue231.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary.Core
      \nAssembly: CatLibrary.dll, CatLibrary.Core.dll

      \n
      public static class Issue231\n
      \n

      Inheritance

      \n

      object ←\nIssue231

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      Bar(ContainersRefType)

      \n
      public static void Bar(this ContainersRefType c)\n
      \n

      Parameters

      \n

      c ContainersRefType

      \n

      Foo(ContainersRefType)

      \n
      public static void Foo(this ContainersRefType c)\n
      \n

      Parameters

      \n

      c ContainersRefType

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.Issue231.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Core.Issue231.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.Issue231.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Issue231

      ", - "title": " Class Issue231", - "wordCount": 45.0, - "_key": "obj/md/CatLibrary.Core.Issue231.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Core.Issue231.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Core.Issue231.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.html.view.verified.json deleted file mode 100644 index 050422408e8..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Classes

      \n

      ContainersRefType.ContainersRefTypeChild

      \n

      ExplicitLayoutClass

      \n

      Issue231

      \n

      Issue231

      \n

      Structs

      \n

      ContainersRefType

      \n

      Struct ContainersRefType

      \n

      Interfaces

      \n

      ContainersRefType.ContainersRefTypeChildInterface

      \n

      Enums

      \n

      ContainersRefType.ColorType

      \n

      Enumeration ColorType

      \n

      Delegates

      \n

      ContainersRefType.ContainersRefTypeDelegate

      \n

      Delegate ContainersRefTypeDelegate

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Core.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Core.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Namespace CatLibrary.Core

      ", - "title": " Namespace CatLibrary.Core", - "wordCount": 19.0, - "_key": "obj/md/CatLibrary.Core.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Core.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Core.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.FakeDelegate-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.FakeDelegate-1.html.view.verified.json deleted file mode 100644 index 3958d1abcd6..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.FakeDelegate-1.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \n

      Fake delegate

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

      Parameters

      \n

      num long

      \n

      Fake para

      \n

      name string

      \n

      Fake para

      \n

      scores object[]

      \n

      Optional Parameter.

      \n

      Returns

      \n

      int

      \n

      Return a fake number to confuse you.

      \n

      Type Parameters

      \n

      T

      \n

      Fake para

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.FakeDelegate-1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.FakeDelegate-1.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.FakeDelegate-1.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Delegate FakeDelegate<T>

      ", - "title": " Delegate FakeDelegate", - "wordCount": 43.0, - "_key": "obj/md/CatLibrary.FakeDelegate-1.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.FakeDelegate-1.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.FakeDelegate-1.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.IAnimal.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.IAnimal.html.view.verified.json deleted file mode 100644 index 3f9c8fa7f7d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.IAnimal.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \n

      This is basic interface of all animal.

      \n
      public interface IAnimal\n
      \n

      Properties

      \n

      Name

      \n

      Name of Animal.

      \n
      string Name { get; }\n
      \n

      Property Value

      \n

      string

      \n

      this[int]

      \n

      Return specific number animal's name.

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

      Property Value

      \n

      string

      \n

      Methods

      \n

      Eat()

      \n

      Animal's eat method.

      \n
      void Eat()\n
      \n

      Eat<Tool>(Tool)

      \n

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

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

      Parameters

      \n

      tool Tool

      \n

      Tool name.

      \n

      Type Parameters

      \n

      Tool

      \n

      It's a class type.

      \n

      Eat(string)

      \n

      Feed the animal with some food

      \n
      void Eat(string food)\n
      \n

      Parameters

      \n

      food string

      \n

      Food to eat

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.IAnimal.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.IAnimal.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.IAnimal.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Interface IAnimal

      ", - "title": " Interface IAnimal", - "wordCount": 96.0, - "_key": "obj/md/CatLibrary.IAnimal.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.IAnimal.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.IAnimal.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICat.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICat.html.view.verified.json deleted file mode 100644 index 46932c10f8d..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICat.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \n

      Cat's interface

      \n
      public interface ICat : IAnimal\n
      \n

      Implements

      \n

      IAnimal

      \n

      Extension Methods

      \n

      ICatExtension.Play(ICat, ContainersRefType.ColorType),\nICatExtension.Sleep(ICat, long)

      \n

      eat

      \n

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

      \n
      event EventHandler eat\n
      \n

      Event Type

      \n

      EventHandler

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.ICat.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.ICat.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.ICat.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Interface ICat

      ", - "title": " Interface ICat", - "wordCount": 35.0, - "_key": "obj/md/CatLibrary.ICat.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.ICat.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.ICat.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICatExtension.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICatExtension.html.view.verified.json deleted file mode 100644 index e06fd881708..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICatExtension.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \n

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

      \n

      This class must be public and static.

      Also it shouldn't be a geneic class

      \n
      public static class ICatExtension\n
      \n

      Inheritance

      \n

      object ←\nICatExtension

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

      Play(ICat, ColorType)

      \n

      Extension method to let cat play

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

      Parameters

      \n

      icat ICat

      \n

      Cat

      \n

      toy ContainersRefType.ColorType

      \n

      Something to play

      \n

      Sleep(ICat, long)

      \n

      Extension method hint that how long the cat can sleep.

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

      Parameters

      \n

      icat ICat

      \n

      The type will be extended.

      \n

      hours long

      \n

      The length of sleep.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.ICatExtension.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.ICatExtension.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.ICatExtension.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class ICatExtension

      ", - "title": " Class ICatExtension", - "wordCount": 107.0, - "_key": "obj/md/CatLibrary.ICatExtension.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.ICatExtension.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.ICatExtension.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefDelegate-3.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefDelegate-3.html.view.verified.json deleted file mode 100644 index d62222fd450..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefDelegate-3.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \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>\n
      \n

      Parameters

      \n

      k K

      \n

      Type K.

      \n

      t T

      \n

      Type T.

      \n

      l L

      \n

      Type L.

      \n

      Type Parameters

      \n

      K

      \n

      Generic K.

      \n

      T

      \n

      Generic T.

      \n

      L

      \n

      Generic L.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.MRefDelegate-3.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.MRefDelegate-3.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.MRefDelegate-3.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Delegate MRefDelegate<K, T, L>

      ", - "title": " Delegate MRefDelegate", - "wordCount": 55.0, - "_key": "obj/md/CatLibrary.MRefDelegate-3.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.MRefDelegate-3.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.MRefDelegate-3.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefNormalDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefNormalDelegate.html.view.verified.json deleted file mode 100644 index ec163bb35d4..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefNormalDelegate.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \n

      Delegate in the namespace

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

      Parameters

      \n

      pics List<string>

      \n

      a name list of pictures.

      \n

      name string

      \n

      give out the needed name.

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.MRefNormalDelegate.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.MRefNormalDelegate.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.MRefNormalDelegate.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Delegate MRefNormalDelegate

      ", - "title": " Delegate MRefNormalDelegate", - "wordCount": 33.0, - "_key": "obj/md/CatLibrary.MRefNormalDelegate.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.MRefNormalDelegate.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.MRefNormalDelegate.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Tom.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Tom.html.view.verified.json deleted file mode 100644 index 077f376c266..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Tom.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \n

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

      \n
      public class Tom\n
      \n

      Inheritance

      \n

      object ←\nTom

      \n

      Derived

      \n

      TomFromBaseClass

      \n

      Inherited Members

      \n

      object.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Methods

      \n

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

      \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)\n
      \n

      Parameters

      \n

      a Complex<TomFromBaseClass, TomFromBaseClass>

      \n

      A complex input

      \n

      b Tuple<string, Tom>

      \n

      Another complex input

      \n

      Returns

      \n

      Complex<string, TomFromBaseClass>

      \n

      Complex

      \n

      Exceptions

      \n

      NotImplementedException

      \n

      This is not implemented

      \n

      ArgumentException

      \n

      This is the exception to be thrown when implemented

      \n

      CatException<T>

      \n

      This is the exception in current documentation

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Tom.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.Tom.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.Tom.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class Tom

      ", - "title": " Class Tom", - "wordCount": 108.0, - "_key": "obj/md/CatLibrary.Tom.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.Tom.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.Tom.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.TomFromBaseClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.TomFromBaseClass.html.view.verified.json deleted file mode 100644 index e7514970b84..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.TomFromBaseClass.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: CatLibrary
      \nAssembly: CatLibrary.dll

      \n

      TomFromBaseClass inherits from @

      \n
      public class TomFromBaseClass : Tom\n
      \n

      Inheritance

      \n

      object ←\nTom ←\nTomFromBaseClass

      \n

      Inherited Members

      \n

      Tom.TomMethod(Complex<TomFromBaseClass, TomFromBaseClass>, Tuple<string, Tom>),\nobject.Equals(object?),\nobject.Equals(object?, object?),\nobject.GetHashCode(),\nobject.GetType(),\nobject.MemberwiseClone(),\nobject.ReferenceEquals(object?, object?),\nobject.ToString()

      \n

      Constructors

      \n

      TomFromBaseClass(int)

      \n

      This is a #ctor with parameter

      \n
      public TomFromBaseClass(int k)\n
      \n

      Parameters

      \n

      k int

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.TomFromBaseClass.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.TomFromBaseClass.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.TomFromBaseClass.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Class TomFromBaseClass

      ", - "title": " Class TomFromBaseClass", - "wordCount": 47.0, - "_key": "obj/md/CatLibrary.TomFromBaseClass.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.TomFromBaseClass.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.TomFromBaseClass.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.html.view.verified.json deleted file mode 100644 index e8aedc8e141..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespaces

      \n

      CatLibrary.Core

      \n

      Classes

      \n

      Cat<T, K>

      \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

      CatException<T>

      \n

      Complex<T, J>

      \n

      ICatExtension

      \n

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

      \n

      This class must be public and static.

      Also it shouldn't be a geneic class

      \n

      Tom

      \n

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

      \n

      TomFromBaseClass

      \n

      TomFromBaseClass inherits from @

      \n

      Interfaces

      \n

      IAnimal

      \n

      This is basic interface of all animal.

      \n

      ICat

      \n

      Cat's interface

      \n

      Delegates

      \n

      FakeDelegate<T>

      \n

      Fake delegate

      \n

      MRefDelegate<K, T, L>

      \n

      Generic delegate with many constrains.

      \n

      MRefNormalDelegate

      \n

      Delegate in the namespace

      \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/CatLibrary.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/CatLibrary.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

      Namespace CatLibrary

      ", - "title": " Namespace CatLibrary", - "wordCount": 130.0, - "_key": "obj/md/CatLibrary.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/CatLibrary.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/CatLibrary.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.ColorType.html.view.verified.json deleted file mode 100644 index 0c144267283..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.ColorType.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

      Namespace: MRef.Demo.Enumeration
      \nAssembly: CatLibrary.dll

      \n

      Enumeration ColorType

      \n
      public enum ColorType\n
      \n

      Fields

      \n

      Red = 0

      \n

      this color is red

      \n

      Blue = 1

      \n

      blue like river

      \n

      Yellow = 2

      \n

      yellow comes from desert

      \n

      Remarks

      \n

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

      \n
        \n

        See Also

        \n

        object

        \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/MRef.Demo.Enumeration.ColorType.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/MRef.Demo.Enumeration.ColorType.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/MRef.Demo.Enumeration.ColorType.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

        Enum ColorType

        ", - "title": " Enum ColorType", - "wordCount": 41.0, - "_key": "obj/md/MRef.Demo.Enumeration.ColorType.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/MRef.Demo.Enumeration.ColorType.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/MRef.Demo.Enumeration.ColorType.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.html.view.verified.json deleted file mode 100644 index aff2ed61a9a..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

        Enums

        \n

        ColorType

        \n

        Enumeration ColorType

        \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/MRef.Demo.Enumeration.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/MRef.Demo.Enumeration.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/MRef.Demo.Enumeration.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

        Namespace MRef.Demo.Enumeration

        ", - "title": " Namespace MRef.Demo.Enumeration", - "wordCount": 4.0, - "_key": "obj/md/MRef.Demo.Enumeration.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/MRef.Demo.Enumeration.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/MRef.Demo.Enumeration.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.html.view.verified.json deleted file mode 100644 index 8938bbb442f..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

        Namespaces

        \n

        MRef.Demo.Enumeration

        \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/MRef.Demo.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/MRef.Demo.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/MRef.Demo.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

        Namespace MRef.Demo

        ", - "title": " Namespace MRef.Demo", - "wordCount": 2.0, - "_key": "obj/md/MRef.Demo.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/MRef.Demo.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/MRef.Demo.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.html.view.verified.json deleted file mode 100644 index 7f9a4494831..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n

        Namespaces

        \n

        MRef.Demo

        \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/obj/md/MRef.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "obj/md/MRef.md", - "documentation": { - "remote": { - "path": "samples/seed/obj/md/MRef.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "

        Namespace MRef

        ", - "title": " Namespace MRef", - "wordCount": 2.0, - "_key": "obj/md/MRef.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/MRef.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "_disableToc": false, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/obj/md/MRef.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.html.view.verified.json deleted file mode 100644 index 477f550cbe3..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.html.view.verified.json +++ /dev/null @@ -1,681 +0,0 @@ -{ - "items": [ - { - "name": "BuildFromAssembly", - "href": "BuildFromAssembly.html", - "topicHref": "BuildFromAssembly.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1", - "href": "BuildFromAssembly.Class1.html", - "topicHref": "BuildFromAssembly.Class1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Structs", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Issue5432", - "href": "BuildFromAssembly.Issue5432.html", - "topicHref": "BuildFromAssembly.Issue5432.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "BuildFromCSharpSourceCode", - "href": "BuildFromCSharpSourceCode.html", - "topicHref": "BuildFromCSharpSourceCode.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "CSharp", - "href": "BuildFromCSharpSourceCode.CSharp.html", - "topicHref": "BuildFromCSharpSourceCode.CSharp.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "BuildFromProject", - "href": "BuildFromProject.html", - "topicHref": "BuildFromProject.html", - "items": [ - { - "name": "Issue8540", - "href": "BuildFromProject.Issue8540.html", - "topicHref": "BuildFromProject.Issue8540.html", - "items": [ - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.html", - "topicHref": "BuildFromProject.Issue8540.A.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.A.html", - "topicHref": "BuildFromProject.Issue8540.A.A.html", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 4.0 - }, - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.html", - "topicHref": "BuildFromProject.Issue8540.B.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.B.html", - "topicHref": "BuildFromProject.Issue8540.B.B.html", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 4.0 - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1", - "href": "BuildFromProject.Class1.html", - "topicHref": "BuildFromProject.Class1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8665", - "href": "BuildFromProject.Class1.Issue8665.html", - "topicHref": "BuildFromProject.Class1.Issue8665.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8696Attribute", - "href": "BuildFromProject.Class1.Issue8696Attribute.html", - "topicHref": "BuildFromProject.Class1.Issue8696Attribute.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8948", - "href": "BuildFromProject.Class1.Issue8948.html", - "topicHref": "BuildFromProject.Class1.Issue8948.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Test", - "href": "BuildFromProject.Class1.Test-1.html", - "topicHref": "BuildFromProject.Class1.Test-1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Dog", - "href": "BuildFromProject.Dog.html", - "topicHref": "BuildFromProject.Dog.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc", - "href": "BuildFromProject.Inheritdoc.html", - "topicHref": "BuildFromProject.Inheritdoc.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366", - "href": "BuildFromProject.Inheritdoc.Issue6366.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366.Class1", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366.Class2", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue7035", - "href": "BuildFromProject.Inheritdoc.Issue7035.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7035.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue7484", - "href": "BuildFromProject.Inheritdoc.Issue7484.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7484.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue8101", - "href": "BuildFromProject.Inheritdoc.Issue8101.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8101.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Issue8725", - "href": "BuildFromProject.Issue8725.html", - "topicHref": "BuildFromProject.Issue8725.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Structs", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue8129", - "href": "BuildFromProject.Inheritdoc.Issue8129.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8129.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Interfaces", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.IIssue8948", - "href": "BuildFromProject.Class1.IIssue8948.html", - "topicHref": "BuildFromProject.Class1.IIssue8948.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "IInheritdoc", - "href": "BuildFromProject.IInheritdoc.html", - "topicHref": "BuildFromProject.IInheritdoc.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Enums", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue9260", - "href": "BuildFromProject.Class1.Issue9260.html", - "topicHref": "BuildFromProject.Class1.Issue9260.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "BuildFromVBSourceCode", - "href": "BuildFromVBSourceCode.html", - "topicHref": "BuildFromVBSourceCode.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "BaseClass1", - "href": "BuildFromVBSourceCode.BaseClass1.html", - "topicHref": "BuildFromVBSourceCode.BaseClass1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Class1", - "href": "BuildFromVBSourceCode.Class1.html", - "topicHref": "BuildFromVBSourceCode.Class1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "CatLibrary", - "href": "CatLibrary.html", - "topicHref": "CatLibrary.html", - "items": [ - { - "name": "Core", - "href": "CatLibrary.Core.html", - "topicHref": "CatLibrary.Core.html", - "items": [ - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeChild", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ExplicitLayoutClass", - "href": "CatLibrary.Core.ExplicitLayoutClass.html", - "topicHref": "CatLibrary.Core.ExplicitLayoutClass.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Issue231", - "href": "CatLibrary.Core.Issue231.html", - "topicHref": "CatLibrary.Core.Issue231.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Structs", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType", - "href": "CatLibrary.Core.ContainersRefType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Interfaces", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeChildInterface", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Enums", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ColorType", - "href": "CatLibrary.Core.ContainersRefType.ColorType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ColorType.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Delegates", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeDelegate", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "Classes", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Cat", - "href": "CatLibrary.Cat-2.html", - "topicHref": "CatLibrary.Cat-2.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "CatException", - "href": "CatLibrary.CatException-1.html", - "topicHref": "CatLibrary.CatException-1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Complex", - "href": "CatLibrary.Complex-2.html", - "topicHref": "CatLibrary.Complex-2.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "ICatExtension", - "href": "CatLibrary.ICatExtension.html", - "topicHref": "CatLibrary.ICatExtension.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Tom", - "href": "CatLibrary.Tom.html", - "topicHref": "CatLibrary.Tom.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "TomFromBaseClass", - "href": "CatLibrary.TomFromBaseClass.html", - "topicHref": "CatLibrary.TomFromBaseClass.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Interfaces", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "IAnimal", - "href": "CatLibrary.IAnimal.html", - "topicHref": "CatLibrary.IAnimal.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "ICat", - "href": "CatLibrary.ICat.html", - "topicHref": "CatLibrary.ICat.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Delegates", - "topicHref": null, - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "FakeDelegate", - "href": "CatLibrary.FakeDelegate-1.html", - "topicHref": "CatLibrary.FakeDelegate-1.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "MRefDelegate", - "href": "CatLibrary.MRefDelegate-3.html", - "topicHref": "CatLibrary.MRefDelegate-3.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "MRefNormalDelegate", - "href": "CatLibrary.MRefNormalDelegate.html", - "topicHref": "CatLibrary.MRefNormalDelegate.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 2.0 - }, - { - "name": "MRef", - "href": "MRef.html", - "topicHref": "MRef.html", - "items": [ - { - "name": "Demo", - "href": "MRef.Demo.html", - "topicHref": "MRef.Demo.html", - "items": [ - { - "name": "Enumeration", - "href": "MRef.Demo.Enumeration.html", - "topicHref": "MRef.Demo.Enumeration.html", - "items": [ - { - "name": "Enums", - "topicHref": null, - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "ColorType", - "href": "MRef.Demo.Enumeration.ColorType.html", - "topicHref": "MRef.Demo.Enumeration.ColorType.html", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 4.0 - } - ], - "tocHref": null, - "level": 3.0 - } - ], - "tocHref": null, - "level": 2.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "obj/md/toc.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "md/toc.html", - "_rel": "../", - "_tocKey": "~/obj/md/toc.yml", - "_tocPath": "md/toc.html", - "_tocRel": "toc.html", - "topicHref": null, - "tocHref": null, - "name": null, - "level": 1.0, - "leaf": false, - "title": "Table of Content", - "_disableToc": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.json.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.json.view.verified.json deleted file mode 100644 index 769ecbab285..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.json.view.verified.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "content": "{\"items\":[{\"name\":\"BuildFromAssembly\",\"href\":\"BuildFromAssembly.html\",\"topicHref\":\"BuildFromAssembly.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"Class1\",\"href\":\"BuildFromAssembly.Class1.html\",\"topicHref\":\"BuildFromAssembly.Class1.html\"},{\"name\":\"Structs\"},{\"name\":\"Issue5432\",\"href\":\"BuildFromAssembly.Issue5432.html\",\"topicHref\":\"BuildFromAssembly.Issue5432.html\"}]},{\"name\":\"BuildFromCSharpSourceCode\",\"href\":\"BuildFromCSharpSourceCode.html\",\"topicHref\":\"BuildFromCSharpSourceCode.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"CSharp\",\"href\":\"BuildFromCSharpSourceCode.CSharp.html\",\"topicHref\":\"BuildFromCSharpSourceCode.CSharp.html\"}]},{\"name\":\"BuildFromProject\",\"href\":\"BuildFromProject.html\",\"topicHref\":\"BuildFromProject.html\",\"items\":[{\"name\":\"Issue8540\",\"href\":\"BuildFromProject.Issue8540.html\",\"topicHref\":\"BuildFromProject.Issue8540.html\",\"items\":[{\"name\":\"A\",\"href\":\"BuildFromProject.Issue8540.A.html\",\"topicHref\":\"BuildFromProject.Issue8540.A.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"A\",\"href\":\"BuildFromProject.Issue8540.A.A.html\",\"topicHref\":\"BuildFromProject.Issue8540.A.A.html\"}]},{\"name\":\"B\",\"href\":\"BuildFromProject.Issue8540.B.html\",\"topicHref\":\"BuildFromProject.Issue8540.B.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"B\",\"href\":\"BuildFromProject.Issue8540.B.B.html\",\"topicHref\":\"BuildFromProject.Issue8540.B.B.html\"}]}]},{\"name\":\"Classes\"},{\"name\":\"Class1\",\"href\":\"BuildFromProject.Class1.html\",\"topicHref\":\"BuildFromProject.Class1.html\"},{\"name\":\"Class1.Issue8665\",\"href\":\"BuildFromProject.Class1.Issue8665.html\",\"topicHref\":\"BuildFromProject.Class1.Issue8665.html\"},{\"name\":\"Class1.Issue8696Attribute\",\"href\":\"BuildFromProject.Class1.Issue8696Attribute.html\",\"topicHref\":\"BuildFromProject.Class1.Issue8696Attribute.html\"},{\"name\":\"Class1.Issue8948\",\"href\":\"BuildFromProject.Class1.Issue8948.html\",\"topicHref\":\"BuildFromProject.Class1.Issue8948.html\"},{\"name\":\"Class1.Test\",\"href\":\"BuildFromProject.Class1.Test-1.html\",\"topicHref\":\"BuildFromProject.Class1.Test-1.html\"},{\"name\":\"Dog\",\"href\":\"BuildFromProject.Dog.html\",\"topicHref\":\"BuildFromProject.Dog.html\"},{\"name\":\"Inheritdoc\",\"href\":\"BuildFromProject.Inheritdoc.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.html\"},{\"name\":\"Inheritdoc.Issue6366\",\"href\":\"BuildFromProject.Inheritdoc.Issue6366.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue6366.html\"},{\"name\":\"Inheritdoc.Issue6366.Class1\",\"href\":\"BuildFromProject.Inheritdoc.Issue6366.Class1-1.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue6366.Class1-1.html\"},{\"name\":\"Inheritdoc.Issue6366.Class2\",\"href\":\"BuildFromProject.Inheritdoc.Issue6366.Class2.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue6366.Class2.html\"},{\"name\":\"Inheritdoc.Issue7035\",\"href\":\"BuildFromProject.Inheritdoc.Issue7035.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue7035.html\"},{\"name\":\"Inheritdoc.Issue7484\",\"href\":\"BuildFromProject.Inheritdoc.Issue7484.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue7484.html\"},{\"name\":\"Inheritdoc.Issue8101\",\"href\":\"BuildFromProject.Inheritdoc.Issue8101.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue8101.html\"},{\"name\":\"Issue8725\",\"href\":\"BuildFromProject.Issue8725.html\",\"topicHref\":\"BuildFromProject.Issue8725.html\"},{\"name\":\"Structs\"},{\"name\":\"Inheritdoc.Issue8129\",\"href\":\"BuildFromProject.Inheritdoc.Issue8129.html\",\"topicHref\":\"BuildFromProject.Inheritdoc.Issue8129.html\"},{\"name\":\"Interfaces\"},{\"name\":\"Class1.IIssue8948\",\"href\":\"BuildFromProject.Class1.IIssue8948.html\",\"topicHref\":\"BuildFromProject.Class1.IIssue8948.html\"},{\"name\":\"IInheritdoc\",\"href\":\"BuildFromProject.IInheritdoc.html\",\"topicHref\":\"BuildFromProject.IInheritdoc.html\"},{\"name\":\"Enums\"},{\"name\":\"Class1.Issue9260\",\"href\":\"BuildFromProject.Class1.Issue9260.html\",\"topicHref\":\"BuildFromProject.Class1.Issue9260.html\"}]},{\"name\":\"BuildFromVBSourceCode\",\"href\":\"BuildFromVBSourceCode.html\",\"topicHref\":\"BuildFromVBSourceCode.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"BaseClass1\",\"href\":\"BuildFromVBSourceCode.BaseClass1.html\",\"topicHref\":\"BuildFromVBSourceCode.BaseClass1.html\"},{\"name\":\"Class1\",\"href\":\"BuildFromVBSourceCode.Class1.html\",\"topicHref\":\"BuildFromVBSourceCode.Class1.html\"}]},{\"name\":\"CatLibrary\",\"href\":\"CatLibrary.html\",\"topicHref\":\"CatLibrary.html\",\"items\":[{\"name\":\"Core\",\"href\":\"CatLibrary.Core.html\",\"topicHref\":\"CatLibrary.Core.html\",\"items\":[{\"name\":\"Classes\"},{\"name\":\"ContainersRefType.ContainersRefTypeChild\",\"href\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html\"},{\"name\":\"ExplicitLayoutClass\",\"href\":\"CatLibrary.Core.ExplicitLayoutClass.html\",\"topicHref\":\"CatLibrary.Core.ExplicitLayoutClass.html\"},{\"name\":\"Issue231\",\"href\":\"CatLibrary.Core.Issue231.html\",\"topicHref\":\"CatLibrary.Core.Issue231.html\"},{\"name\":\"Structs\"},{\"name\":\"ContainersRefType\",\"href\":\"CatLibrary.Core.ContainersRefType.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.html\"},{\"name\":\"Interfaces\"},{\"name\":\"ContainersRefType.ContainersRefTypeChildInterface\",\"href\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html\"},{\"name\":\"Enums\"},{\"name\":\"ContainersRefType.ColorType\",\"href\":\"CatLibrary.Core.ContainersRefType.ColorType.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ColorType.html\"},{\"name\":\"Delegates\"},{\"name\":\"ContainersRefType.ContainersRefTypeDelegate\",\"href\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html\",\"topicHref\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html\"}]},{\"name\":\"Classes\"},{\"name\":\"Cat\",\"href\":\"CatLibrary.Cat-2.html\",\"topicHref\":\"CatLibrary.Cat-2.html\"},{\"name\":\"CatException\",\"href\":\"CatLibrary.CatException-1.html\",\"topicHref\":\"CatLibrary.CatException-1.html\"},{\"name\":\"Complex\",\"href\":\"CatLibrary.Complex-2.html\",\"topicHref\":\"CatLibrary.Complex-2.html\"},{\"name\":\"ICatExtension\",\"href\":\"CatLibrary.ICatExtension.html\",\"topicHref\":\"CatLibrary.ICatExtension.html\"},{\"name\":\"Tom\",\"href\":\"CatLibrary.Tom.html\",\"topicHref\":\"CatLibrary.Tom.html\"},{\"name\":\"TomFromBaseClass\",\"href\":\"CatLibrary.TomFromBaseClass.html\",\"topicHref\":\"CatLibrary.TomFromBaseClass.html\"},{\"name\":\"Interfaces\"},{\"name\":\"IAnimal\",\"href\":\"CatLibrary.IAnimal.html\",\"topicHref\":\"CatLibrary.IAnimal.html\"},{\"name\":\"ICat\",\"href\":\"CatLibrary.ICat.html\",\"topicHref\":\"CatLibrary.ICat.html\"},{\"name\":\"Delegates\"},{\"name\":\"FakeDelegate\",\"href\":\"CatLibrary.FakeDelegate-1.html\",\"topicHref\":\"CatLibrary.FakeDelegate-1.html\"},{\"name\":\"MRefDelegate\",\"href\":\"CatLibrary.MRefDelegate-3.html\",\"topicHref\":\"CatLibrary.MRefDelegate-3.html\"},{\"name\":\"MRefNormalDelegate\",\"href\":\"CatLibrary.MRefNormalDelegate.html\",\"topicHref\":\"CatLibrary.MRefNormalDelegate.html\"}]},{\"name\":\"MRef\",\"href\":\"MRef.html\",\"topicHref\":\"MRef.html\",\"items\":[{\"name\":\"Demo\",\"href\":\"MRef.Demo.html\",\"topicHref\":\"MRef.Demo.html\",\"items\":[{\"name\":\"Enumeration\",\"href\":\"MRef.Demo.Enumeration.html\",\"topicHref\":\"MRef.Demo.Enumeration.html\",\"items\":[{\"name\":\"Enums\"},{\"name\":\"ColorType\",\"href\":\"MRef.Demo.Enumeration.ColorType.html\",\"topicHref\":\"MRef.Demo.Enumeration.ColorType.html\"}]}]}]}],\"pdf\":true,\"pdfTocPage\":true}" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.pdf.verified.json deleted file mode 100644 index e4cb1b26cbc..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.pdf.verified.json +++ /dev/null @@ -1,7025 +0,0 @@ -{ - "NumberOfPages": 80, - "Pages": [ - { - "Number": 1, - "Text": "Table of ContentsBuildFromAssembly3ClassesClass14StructsIssue54325BuildFromCSharpSourceCode6ClassesCSharp7BuildFromProject8Issue854010A11ClassesA12B13ClassesB14ClassesClass115Class1.Issue866520Class1.Issue8696Attribute22Class1.Issue894824Class1.Test25Dog26Inheritdoc28Inheritdoc.Issue636629Inheritdoc.Issue6366.Class130Inheritdoc.Issue6366.Class231Inheritdoc.Issue703532Inheritdoc.Issue748433Inheritdoc.Issue810135Issue872537StructsInheritdoc.Issue812938InterfacesClass1.IIssue894839IInheritdoc40EnumsClass1.Issue926041", - "Links": [ - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 22, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 29, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 33, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 39, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 40, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 2, - "Text": "BuildFromVBSourceCode42ClassesBaseClass143Class144CatLibrary46Core48ClassesContainersRefType.ContainersRefTypeChild49ExplicitLayoutClass50Issue23151StructsContainersRefType52InterfacesContainersRefType.ContainersRefTypeChildInterface54EnumsContainersRefType.ColorType55DelegatesContainersRefType.ContainersRefTypeDelegate56ClassesCat57CatException64Complex65ICatExtension66Tom68TomFromBaseClass70InterfacesIAnimal71ICat73DelegatesFakeDelegate74MRefDelegate75MRefNormalDelegate76MRef77Demo78Enumeration79EnumsColorType80", - "Links": [ - { - "Goto": { - "PageNumber": 42, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 65, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 3, - "Text": "3 / 80Namespace BuildFromAssemblyClassesClass1This is a test class.StructsIssue5432", - "Links": [ - { - "Goto": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 4, - "Text": "4 / 80Class Class1Namespace: 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()\uF1C5ConstructorsClass1()MethodsHelloWorld()Hello World.public class Class1public Class1()public static void HelloWorld()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 5, - "Text": "5 / 80Struct Issue5432Namespace: BuildFromAssemblyAssembly: BuildFromAssembly.dllInherited Membersobject.GetType()\uF1C5, object.ToString()\uF1C5, object.Equals(object?)\uF1C5, object.Equals(object?,object?)\uF1C5, object.ReferenceEquals(object?, object?)\uF1C5, object.GetHashCode()\uF1C5PropertiesNameProperty Valuestring\uF1C5public struct Issue5432public string Name { get; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 6, - "Text": "6 / 80Namespace BuildFromCSharpSourceCodeClassesCSharp", - "Links": [ - { - "Goto": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 7, - "Text": "7 / 80Class CSharpNamespace: 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()\uF1C5MethodsMain(string[])Parametersargs string\uF1C5[]public class CSharppublic static void Main(string[] args)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 8, - "Text": "8 / 80Namespace BuildFromProjectNamespacesBuildFromProject.Issue8540ClassesInheritdoc.Issue6366.Class1Class1Inheritdoc.Issue6366.Class2DogClass representing a dog.InheritdocInheritdoc.Issue6366Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Class1.Issue8665Class1.Issue8696AttributeIssue8725A nice classClass1.Issue8948Class1.TestStructsInheritdoc.Issue8129Interfaces", - "Links": [ - { - "Goto": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 29, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 33, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 22, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 9, - "Text": "9 / 80IInheritdocClass1.IIssue8948EnumsClass1.Issue9260", - "Links": [ - { - "Goto": { - "PageNumber": 40, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 39, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 10, - "Text": "10 / 80Namespace BuildFromProject.Issue8540NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.B", - "Links": [ - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 11, - "Text": "11 / 80Namespace BuildFromProject.Issue8540.AClassesA", - "Links": [ - { - "Goto": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 12, - "Text": "12 / 80Class ANamespace: 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()\uF1C5public class A", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 13, - "Text": "13 / 80Namespace BuildFromProject.Issue8540.BClassesB", - "Links": [ - { - "Goto": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 14, - "Text": "14 / 80Class BNamespace: 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()\uF1C5public class B", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 15, - "Text": "15 / 80Class Class1Namespace: 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()\uF1C5MethodsIssue1651()Pricing models are used to calculate theoretical option values1Black Scholes2Black763Black76Fut4Equity Tree5Variance Swap6Dividend ForecastIssue1887()IConfiguration related helper and extension routines.Issue2623()public class Class1 : IClass1public void Issue1651()public void Issue1887()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 16, - "Text": "16 / 80ExamplesRemarksFor example:Issue2723()RemarksInline .link\uF1C5public void Issue2623()MyClass myClass = new MyClass();void Update(){ myClass.Execute();}MyClass myClass = new MyClass();void Update(){ myClass.Execute();}public void Issue2723()NOTEThis is a . & \" '\uF431for (var i = 0; i > 10; i++) // & \" 'var range = new Range { Min = 0, Max = 10 };", - "Links": [ - { - "Uri": "https://www.github.com/" - }, - { - "Uri": "https://www.github.com/" - }, - { - "Uri": "https://www.github.com/" - } - ] - }, - { - "Number": 17, - "Text": "17 / 80Issue4017()ExamplesRemarksIssue4392()Remarks@\"\\\\?\\\" @\"\\\\?\\\"var range = new Range { Min = 0, Max = 10 };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();}public void Issue4392()", - "Links": [] - }, - { - "Number": 18, - "Text": "18 / 80Issue7484()RemarksThere's really no reason to not believe that this class can test things.TermDescriptionA TermA DescriptionBee TermBee DescriptionIssue8764()Type ParametersTIssue896()TestSee AlsoClass1.Test, Class1Issue9216()Calculates the determinant of a 3-dimensional matrix:Returns the smallest value:public void Issue7484()public void Issue8764() where T : unmanagedpublic void Issue896()", - "Links": [ - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 19, - "Text": "19 / 80Returnsdouble\uF1C5XmlCommentIncludeTag()This method should do something...RemarksThis is remarks.public static double Issue9216()public void XmlCommentIncludeTag()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.double" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.double" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.double" - } - ] - }, - { - "Number": 20, - "Text": "20 / 80Class Class1.Issue8665Namespace: 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()\uF1C5ConstructorsIssue8665()Issue8665(int)Parametersfoo int\uF1C5Issue8665(int, char)Parametersfoo int\uF1C5bar char\uF1C5Issue8665(int, char, string)public class Class1.Issue8665public Issue8665()public Issue8665(int foo)public Issue8665(int foo, char bar)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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" - }, - { - "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.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 21, - "Text": "21 / 80Parametersfoo int\uF1C5bar char\uF1C5baz string\uF1C5PropertiesBarProperty Valuechar\uF1C5BazProperty Valuestring\uF1C5FooProperty Valueint\uF1C5public Issue8665(int foo, char bar, string baz)public char Bar { get; }public string Baz { get; }public int Foo { get; }", - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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" - } - ] - }, - { - "Number": 22, - "Text": "22 / 80Class Class1.Issue8696AttributeNamespace: 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?)\uF1C5, object.Equals(object?, object?)\uF1C5, object.GetHashCode()\uF1C5,object.GetType()\uF1C5, object.MemberwiseClone()\uF1C5, object.ReferenceEquals(object?, object?)\uF1C5,object.ToString()\uF1C5public class Class1.Issue8696Attribute : Attribute", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 22, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 23, - "Text": "23 / 80ConstructorsIssue8696Attribute(string?, int, int, string[]?, bool, Type?)Parametersdescription string\uF1C5?boundsMin int\uF1C5boundsMax int\uF1C5validGameModes string\uF1C5[]?hasMultipleSelections bool\uF1C5enumType Type\uF1C5?[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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - } - ] - }, - { - "Number": 24, - "Text": "24 / 80Class Class1.Issue8948Namespace: 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()\uF1C5MethodsDoNothing()Does nothing with generic type T.Type ParametersTA generic type.public class Class1.Issue8948 : Class1.IIssue8948public void DoNothing()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 39, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 25, - "Text": "25 / 80Class Class1.TestNamespace: 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()\uF1C5public class Class1.Test", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 26, - "Text": "26 / 80Class DogNamespace: BuildFromProjectAssembly: BuildFromProject.dllClass representing a dog.Inheritanceobject\uF1C5 ← DogInherited 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()\uF1C5ConstructorsDog(string, int)Constructor.Parametersname string\uF1C5Name of the dog.age int\uF1C5Age of the dog.PropertiesAgeAge of the dog.public class Dogpublic Dog(string name, int age)public int Age { get; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 27, - "Text": "27 / 80Property Valueint\uF1C5NameName of the dog.Property Valuestring\uF1C5public string Name { get; }", - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 28, - "Text": "28 / 80Class InheritdocNamespace: 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()\uF1C5MethodsDispose()Performs application-defined tasks associated with freeing, releasing, or resettingunmanaged resources.Issue7628()This method should do something...Issue7629()This method should do something...public class Inheritdoc : IInheritdoc, IDisposablepublic void Dispose()public void Issue7628()public void Issue7629()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 40, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 29, - "Text": "29 / 80Class Inheritdoc.Issue6366Namespace: 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()\uF1C5public class Inheritdoc.Issue6366", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 29, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 30, - "Text": "30 / 80Class Inheritdoc.Issue6366.Class1Namespace: BuildFromProjectAssembly: BuildFromProject.dllType ParametersTInheritanceobject\uF1C5 ← Inheritdoc.Issue6366.Class1Inherited 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()\uF1C5MethodsTestMethod1(T, int)This text inherited.Parametersparm1 TThis text NOT inherited.parm2 int\uF1C5This text inherited.ReturnsTThis text inherited.public abstract class Inheritdoc.Issue6366.Class1public abstract T TestMethod1(T parm1, int parm2)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 31, - "Text": "31 / 80Class Inheritdoc.Issue6366.Class2Namespace: BuildFromProjectAssembly: BuildFromProject.dllInheritanceobject\uF1C5 ← Inheritdoc.Issue6366.Class1 ← Inheritdoc.Issue6366.Class2Inherited MembersInheritdoc.Issue6366.Class1.TestMethod1(bool, int), 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()\uF1C5MethodsTestMethod1(bool, int)This text inherited.Parametersparm1 bool\uF1C5This text NOT inherited.parm2 int\uF1C5This text inherited.Returnsbool\uF1C5This text inherited.public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1public override bool TestMethod1(bool parm1, int parm2)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Coordinates": { - "Left": 28, - "Top": 395.75 - } - } - } - ] - }, - { - "Number": 32, - "Text": "32 / 80Class Inheritdoc.Issue7035Namespace: 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()\uF1C5MethodsA()B()public class Inheritdoc.Issue7035public void A()public void B()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 33, - "Text": "33 / 80Class Inheritdoc.Issue7484Namespace: 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.ConstructorsIssue7484()This is a constructor to document.PropertiesDoDadA string that could have something.public class Inheritdoc.Issue7484public Issue7484()public string DoDad { get; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 33, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Uri": "" - } - ] - }, - { - "Number": 34, - "Text": "34 / 80Property Valuestring\uF1C5MethodsBoolReturningMethod(bool)Simple 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 bool BoolReturningMethod(bool source)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - } - ] - }, - { - "Number": 35, - "Text": "35 / 80Class Inheritdoc.Issue8101Namespace: 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()\uF1C5MethodsTween(float, float, float, Action<float>)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.Returnspublic class Inheritdoc.Issue8101public static object Tween(float from, float to, float duration, Action onChange)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 36, - "Text": "36 / 80object\uF1C5The newly created tween instance.Tween(int, int, float, Action)Create 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.Returnsobject\uF1C5The newly created tween instance.public static object Tween(int from, int to, float duration, Action onChange)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "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" - }, - { - "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.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "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.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - } - ] - }, - { - "Number": 37, - "Text": "37 / 80Class Issue8725Namespace: 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()\uF1C5MethodsMoreOperations()Another nice operationMyOperation()A nice operationSee AlsoClass1public class Issue8725public void MoreOperations()public void MyOperation()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 38, - "Text": "38 / 80Struct Inheritdoc.Issue8129Namespace: BuildFromProjectAssembly: BuildFromProject.dllInherited Membersobject.Equals(object?)\uF1C5, object.Equals(object?, object?)\uF1C5, object.GetHashCode()\uF1C5,object.GetType()\uF1C5, object.ReferenceEquals(object?, object?)\uF1C5, object.ToString()\uF1C5ConstructorsIssue8129(string)Parametersfoo string\uF1C5public struct Inheritdoc.Issue8129public Issue8129(string foo)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 39, - "Text": "39 / 80Interface Class1.IIssue8948Namespace: BuildFromProjectAssembly: BuildFromProject.dllMethodsDoNothing()Does nothing with generic type T.Type ParametersTA generic type.public interface Class1.IIssue8948void DoNothing()", - "Links": [ - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 40, - "Text": "40 / 80Interface IInheritdocNamespace: BuildFromProjectAssembly: BuildFromProject.dllMethodsIssue7629()This method should do something...public interface IInheritdocvoid Issue7629()", - "Links": [ - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 41, - "Text": "41 / 80Enum Class1.Issue9260Namespace: BuildFromProjectAssembly: BuildFromProject.dllFieldsValue = 0This is a regular enum value.This is a remarks section. Very important remarks about Value go here.OldAndUnusedValue = 1This is old and unused. You shouldn't use it anymore.Don't use this, seriously! Use Value instead.OldAndUnusedValue2 = 2This is old and unused. You shouldn't use it anymore.Don't use this, seriously! Use Value instead.public enum Class1.Issue9260", - "Links": [ - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 42, - "Text": "42 / 80Namespace BuildFromVBSourceCodeClassesBaseClass1This is the BaseClassClass1This is summary from vb class...", - "Links": [ - { - "Goto": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 43, - "Text": "43 / 80Class BaseClass1Namespace: 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()\uF1C5MethodsWithDeclarationKeyword(Class1)Parameterskeyword Class1ReturnsDateTime\uF1C5public abstract class BaseClass1public abstract DateTime WithDeclarationKeyword(Class1 keyword)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 42, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 44, - "Text": "44 / 80Class Class1Namespace: BuildFromVBSourceCodeThis is summary from vb class...Inheritanceobject\uF1C5 ← BaseClass1 ← Class1Inherited MembersBaseClass1.WithDeclarationKeyword(Class1), object.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()\uF1C5FieldsValueClassThis is a Value typeField ValueClass1PropertiesKeywordProperty ValueClass1MethodsValue(string)public class Class1 : BaseClass1public Class1 ValueClass[Obsolete(\"This member is obsolete.\", true)]public Class1 Keyword { get; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 42, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 43, - "Coordinates": { - "Left": 28, - "Top": 383.75 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 45, - "Text": "45 / 80This is a FunctionParametersname string\uF1C5Name as the String valueReturnsint\uF1C5Returns AhoooWithDeclarationKeyword(Class1)What is Sub?Parameterskeyword Class1ReturnsDateTime\uF1C5public int Value(string name)public override DateTime WithDeclarationKeyword(Class1 keyword)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 46, - "Text": "46 / 80Namespace CatLibraryNamespacesCatLibrary.CoreClassesCatHere'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 classCatExceptionComplexICatExtensionIt'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 interface", - "Links": [ - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 65, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 47, - "Text": "47 / 80DelegatesFakeDelegateFake delegateMRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", - "Links": [ - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 48, - "Text": "48 / 80Namespace CatLibrary.CoreClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231Issue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegate", - "Links": [ - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 49, - "Text": "49 / 80Class ContainersRefType.ContainersRefTypeChildNamespace: 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()\uF1C5public class ContainersRefType.ContainersRefTypeChild", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 50, - "Text": "50 / 80Class ExplicitLayoutClassNamespace: 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()\uF1C5public class ExplicitLayoutClass", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 51, - "Text": "51 / 80Class Issue231Namespace: CatLibrary.CoreAssembly: CatLibrary.dll, CatLibrary.Core.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()\uF1C5MethodsBar(ContainersRefType)Parametersc ContainersRefTypeFoo(ContainersRefType)Parametersc ContainersRefTypepublic static class Issue231public static void Bar(this ContainersRefType c)public static void Foo(this ContainersRefType c)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 52, - "Text": "52 / 80Struct ContainersRefTypeNamespace: CatLibrary.CoreAssembly: CatLibrary.Core.dllStruct ContainersRefTypeInherited Membersobject.Equals(object?)\uF1C5, object.Equals(object?, object?)\uF1C5, object.GetHashCode()\uF1C5,object.GetType()\uF1C5, object.ReferenceEquals(object?, object?)\uF1C5, object.ToString()\uF1C5Extension MethodsIssue231.Bar(ContainersRefType), Issue231.Foo(ContainersRefType)FieldsColorCountColorCountField Valuelong\uF1C5PropertiesGetColorCountGetColorCountProperty Valuelong\uF1C5Methodspublic struct ContainersRefTypepublic long ColorCountpublic long GetColorCount { get; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Coordinates": { - "Left": 28, - "Top": 452 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Coordinates": { - "Left": 28, - "Top": 318.5 - } - } - } - ] - }, - { - "Number": 53, - "Text": "53 / 80ContainersRefTypeNonRefMethod(params object[])ContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Returnsint\uF1C5ContainersRefTypeEventHandlerEvent TypeEventHandler\uF1C5public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)public event EventHandler ContainersRefTypeEventHandler", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "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.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - } - ] - }, - { - "Number": 54, - "Text": "54 / 80Interface ContainersRefType.ContainersRefTypeChildInterfaceNamespace: CatLibrary.CoreAssembly: CatLibrary.Core.dllpublic interface ContainersRefType.ContainersRefTypeChildInterface", - "Links": [ - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 55, - "Text": "55 / 80Enum ContainersRefType.ColorTypeNamespace: CatLibrary.CoreAssembly: CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowpublic enum ContainersRefType.ColorType", - "Links": [ - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 56, - "Text": "56 / 80Delegate ContainersRefType.ContainersRefTypeDelegateNamespace: CatLibrary.CoreAssembly: CatLibrary.Core.dllDelegate ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", - "Links": [ - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 57, - "Text": "57 / 80Class CatNamespace: 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 classType 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?)\uF1C5, object.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)Examples[Serializable][Obsolete]public class Cat : ICat, IAnimal where T : class, new() where K : struct", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Coordinates": { - "Left": 28, - "Top": 362 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Coordinates": { - "Left": 28, - "Top": 108.499939 - } - } - } - ] - }, - { - "Number": 58, - "Text": "58 / 80Here'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.RemarksHere's all the content you can see in this class.ConstructorsCat()Default constructor.Cat(T)Constructor with one generic parameter.ParametersownType TThis parameter type defined by class.Cat(string, out int, string, bool)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);}public Cat()public Cat(T ownType)public Cat(string nickName, out int age, string realName, bool isHealthy)", - "Links": [] - }, - { - "Number": 59, - "Text": "59 / 80nickName 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.FieldsisHealthyField with attribute.Field Valuebool\uF1C5PropertiesAgeHint cat's age.Property Valueint\uF1C5Name[ContextStatic][NonSerialized][Obsolete]public bool isHealthy[Obsolete]protected int Age { get; set; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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" - } - ] - }, - { - "Number": 60, - "Text": "60 / 80EII property.Property Valuestring\uF1C5this[string]This is index property of Cat. You can see that the visibility is different between get and setmethod.Property Valueint\uF1C5MethodsCalculateFood(DateTime)It's a method with complex return type.Parametersdate DateTime\uF1C5Date time to now.ReturnsDictionary\uF1C5>It's a relationship map of different kind food.Equals(object)Override the method of Object.Equals(object obj).public string Name { get; }public int this[string a] { protected get; set; }public Dictionary> CalculateFood(DateTime date)public override bool Equals(object obj)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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.datetime" - }, - { - "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.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "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" - } - ] - }, - { - "Number": 61, - "Text": "61 / 80Parametersobj object\uF1C5Can pass any class type.Returnsbool\uF1C5The 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.ParameterscatName int\uF1C5*Thie represent for cat name length.parameters object\uF1C5[]Optional parameters.Returnslong\uF1C5Return cat tail's length.Jump(T, K, ref bool)This method have attribute above it.ParametersownType TType come from class define.public long GetTailLength(int* catName, params object[] parameters)[Conditional(\"Debug\")]public void Jump(T ownType, K anotherOwnType, ref bool cheat)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - } - ] - }, - { - "Number": 62, - "Text": "62 / 80anotherOwnType KType come from class define.cheat bool\uF1C5Hint whether this cat has cheat mode.ExceptionsArgumentException\uF1C5This is an argument exceptionownEatEat event of this catEvent TypeEventHandler\uF1C5Operatorsoperator +(Cat, int)Addition operator of this class.Parameterslsr Cat..rsr int\uF1C5~~Returnsint\uF1C5[Obsolete(\"This _event handler_ is deprecated.\")]public event EventHandler ownEatpublic static int operator +(Cat lsr, int rsr)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 63, - "Text": "63 / 80Result 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.Parameterssrc CatInstance of this class.ReturnsTomAdvanced class type of cat.operator -(Cat, int)Similar with operaotr +, refer to that topic.Parameterslsr Catrsr int\uF1C5Returnsint\uF1C5public static explicit operator Tom(Cat src)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" - }, - { - "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": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 64, - "Text": "64 / 80Class CatExceptionNamespace: 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.GetType()\uF1C5, object.MemberwiseClone()\uF1C5,object.ReferenceEquals(object?, object?)\uF1C5, object.ToString()\uF1C5public class CatException : Exception, ISerializable", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 65, - "Text": "65 / 80Class ComplexNamespace: 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()\uF1C5public class Complex", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 65, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 66, - "Text": "66 / 80Class ICatExtensionNamespace: 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()\uF1C5MethodsPlay(ICat, ColorType)Extension method to let cat playParametersicat ICatCattoy ContainersRefType.ColorTypeSomething to playSleep(ICat, long)Extension method hint that how long the cat can sleep.public static class ICatExtensionpublic static void Play(this ICat icat, ContainersRefType.ColorType toy)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 67, - "Text": "67 / 80Parametersicat ICatThe type will be extended.hours long\uF1C5The length of sleep.public static void Sleep(this ICat icat, long hours)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 68, - "Text": "68 / 80Class TomNamespace: 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()\uF1C5MethodsTomMethod(Complex, Tuple)This is a Tom Method with complex type as returnParametersa ComplexA complex inputb Tuple\uF1C5Another complex inputReturnspublic class Tompublic Complex TomMethod(Complex a, Tuple b)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 65, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 69, - "Text": "69 / 80ComplexComplex 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Goto": { - "PageNumber": 65, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 70, - "Text": "70 / 80Class TomFromBaseClassNamespace: 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()\uF1C5ConstructorsTomFromBaseClass(int)This is a #ctor with parameterParametersk int\uF1C5public class TomFromBaseClass : Tompublic TomFromBaseClass(int k)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Coordinates": { - "Left": 28, - "Top": 365.75 - } - } - } - ] - }, - { - "Number": 71, - "Text": "71 / 80Interface IAnimalNamespace: CatLibraryAssembly: CatLibrary.dllThis is basic interface of all animal.PropertiesNameName of Animal.Property Valuestring\uF1C5this[int]Return specific number animal's name.Property Valuestring\uF1C5MethodsEat()Animal's eat method.Eat(Tool)Overload method of eat. This define the animal eat by which tool.public interface IAnimalstring Name { get; }string this[int index] { get; }void Eat()", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 72, - "Text": "72 / 80Parameterstool ToolTool name.Type ParametersToolIt's a class type.Eat(string)Feed the animal with some foodParametersfood string\uF1C5Food to eatvoid Eat(Tool tool) where Tool : classvoid Eat(string food)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 73, - "Text": "73 / 80Interface ICatNamespace: CatLibraryAssembly: CatLibrary.dllCat's interfaceImplementsIAnimalExtension MethodsICatExtension.Play(ICat, ContainersRefType.ColorType), ICatExtension.Sleep(ICat, long)eateat event of cat. Every cat must implement this event.Event TypeEventHandler\uF1C5public interface ICat : IAnimalevent EventHandler eat", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Coordinates": { - "Left": 28, - "Top": 362 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Coordinates": { - "Left": 28, - "Top": 108.499939 - } - } - } - ] - }, - { - "Number": 74, - "Text": "74 / 80Delegate FakeDelegateNamespace: CatLibraryAssembly: CatLibrary.dllFake delegateParametersnum long\uF1C5Fake paraname string\uF1C5Fake parascores object\uF1C5[]Optional Parameter.Returnsint\uF1C5Return a fake number to confuse you.Type ParametersTFake parapublic delegate int FakeDelegate(long num, string name, params object[] scores)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "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": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 75, - "Text": "75 / 80Delegate MRefDelegateNamespace: CatLibraryAssembly: CatLibrary.dllGeneric delegate with many constrains.Parametersk KType K.t TType T.l LType L.Type ParametersKGeneric K.TGeneric T.LGeneric L.public delegate void MRefDelegate(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable", - "Links": [ - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 76, - "Text": "76 / 80Delegate MRefNormalDelegateNamespace: CatLibraryAssembly: CatLibrary.dllDelegate in the namespaceParameterspics List\uF1C5a name list of pictures.name string\uF1C5give out the needed name.public delegate void MRefNormalDelegate(List pics, out string name)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 77, - "Text": "77 / 80Namespace MRefNamespacesMRef.Demo", - "Links": [ - { - "Goto": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 78, - "Text": "78 / 80Namespace MRef.DemoNamespacesMRef.Demo.Enumeration", - "Links": [ - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 79, - "Text": "79 / 80Namespace MRef.Demo.EnumerationEnumsColorTypeEnumeration ColorType", - "Links": [ - { - "Goto": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 80, - "Text": "80 / 80Enum ColorTypeNamespace: 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\uF1C5public enum ColorType", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Goto": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - } - ], - "Bookmarks": [ - { - "Title": "BuildFromAssembly", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 4, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Structs", - "Children": [], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue5432", - "Children": [], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromCSharpSourceCode", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "CSharp", - "Children": [], - "Destination": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromProject", - "Children": [ - { - "Title": "Issue8540", - "Children": [ - { - "Title": "A", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "A", - "Children": [], - "Destination": { - "PageNumber": 12, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 11, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "B", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "B", - "Children": [], - "Destination": { - "PageNumber": 14, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 13, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 10, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8665", - "Children": [], - "Destination": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8696Attribute", - "Children": [], - "Destination": { - "PageNumber": 22, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8948", - "Children": [], - "Destination": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Test", - "Children": [], - "Destination": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Dog", - "Children": [], - "Destination": { - "PageNumber": 26, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc", - "Children": [], - "Destination": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366", - "Children": [], - "Destination": { - "PageNumber": 29, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366.Class1", - "Children": [], - "Destination": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366.Class2", - "Children": [], - "Destination": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue7035", - "Children": [], - "Destination": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue7484", - "Children": [], - "Destination": { - "PageNumber": 33, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue8101", - "Children": [], - "Destination": { - "PageNumber": 35, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue8725", - "Children": [], - "Destination": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Structs", - "Children": [], - "Destination": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue8129", - "Children": [], - "Destination": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Interfaces", - "Children": [], - "Destination": { - "PageNumber": 39, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.IIssue8948", - "Children": [], - "Destination": { - "PageNumber": 39, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "IInheritdoc", - "Children": [], - "Destination": { - "PageNumber": 40, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Enums", - "Children": [], - "Destination": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue9260", - "Children": [], - "Destination": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromVBSourceCode", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BaseClass1", - "Children": [], - "Destination": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 42, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "CatLibrary", - "Children": [ - { - "Title": "Core", - "Children": [ - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeChild", - "Children": [], - "Destination": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ExplicitLayoutClass", - "Children": [], - "Destination": { - "PageNumber": 50, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue231", - "Children": [], - "Destination": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Structs", - "Children": [], - "Destination": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType", - "Children": [], - "Destination": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Interfaces", - "Children": [], - "Destination": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeChildInterface", - "Children": [], - "Destination": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Enums", - "Children": [], - "Destination": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ColorType", - "Children": [], - "Destination": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Delegates", - "Children": [], - "Destination": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeDelegate", - "Children": [], - "Destination": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Classes", - "Children": [], - "Destination": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Cat", - "Children": [], - "Destination": { - "PageNumber": 57, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "CatException", - "Children": [], - "Destination": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Complex", - "Children": [], - "Destination": { - "PageNumber": 65, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ICatExtension", - "Children": [], - "Destination": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Tom", - "Children": [], - "Destination": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "TomFromBaseClass", - "Children": [], - "Destination": { - "PageNumber": 70, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Interfaces", - "Children": [], - "Destination": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "IAnimal", - "Children": [], - "Destination": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ICat", - "Children": [], - "Destination": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Delegates", - "Children": [], - "Destination": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "FakeDelegate", - "Children": [], - "Destination": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRefDelegate", - "Children": [], - "Destination": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRefNormalDelegate", - "Children": [], - "Destination": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRef", - "Children": [ - { - "Title": "Demo", - "Children": [ - { - "Title": "Enumeration", - "Children": [ - { - "Title": "Enums", - "Children": [], - "Destination": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ColorType", - "Children": [], - "Destination": { - "PageNumber": 80, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 79, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.verified.json deleted file mode 100644 index 7438292da37..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/toc.verified.json +++ /dev/null @@ -1,367 +0,0 @@ -{ - "items": [ - { - "name": "BuildFromAssembly", - "href": "BuildFromAssembly.html", - "topicHref": "BuildFromAssembly.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "Class1", - "href": "BuildFromAssembly.Class1.html", - "topicHref": "BuildFromAssembly.Class1.html" - }, - { - "name": "Structs" - }, - { - "name": "Issue5432", - "href": "BuildFromAssembly.Issue5432.html", - "topicHref": "BuildFromAssembly.Issue5432.html" - } - ] - }, - { - "name": "BuildFromCSharpSourceCode", - "href": "BuildFromCSharpSourceCode.html", - "topicHref": "BuildFromCSharpSourceCode.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "CSharp", - "href": "BuildFromCSharpSourceCode.CSharp.html", - "topicHref": "BuildFromCSharpSourceCode.CSharp.html" - } - ] - }, - { - "name": "BuildFromProject", - "href": "BuildFromProject.html", - "topicHref": "BuildFromProject.html", - "items": [ - { - "name": "Issue8540", - "href": "BuildFromProject.Issue8540.html", - "topicHref": "BuildFromProject.Issue8540.html", - "items": [ - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.html", - "topicHref": "BuildFromProject.Issue8540.A.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "A", - "href": "BuildFromProject.Issue8540.A.A.html", - "topicHref": "BuildFromProject.Issue8540.A.A.html" - } - ] - }, - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.html", - "topicHref": "BuildFromProject.Issue8540.B.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "B", - "href": "BuildFromProject.Issue8540.B.B.html", - "topicHref": "BuildFromProject.Issue8540.B.B.html" - } - ] - } - ] - }, - { - "name": "Classes" - }, - { - "name": "Class1", - "href": "BuildFromProject.Class1.html", - "topicHref": "BuildFromProject.Class1.html" - }, - { - "name": "Class1.Issue8665", - "href": "BuildFromProject.Class1.Issue8665.html", - "topicHref": "BuildFromProject.Class1.Issue8665.html" - }, - { - "name": "Class1.Issue8696Attribute", - "href": "BuildFromProject.Class1.Issue8696Attribute.html", - "topicHref": "BuildFromProject.Class1.Issue8696Attribute.html" - }, - { - "name": "Class1.Issue8948", - "href": "BuildFromProject.Class1.Issue8948.html", - "topicHref": "BuildFromProject.Class1.Issue8948.html" - }, - { - "name": "Class1.Test", - "href": "BuildFromProject.Class1.Test-1.html", - "topicHref": "BuildFromProject.Class1.Test-1.html" - }, - { - "name": "Dog", - "href": "BuildFromProject.Dog.html", - "topicHref": "BuildFromProject.Dog.html" - }, - { - "name": "Inheritdoc", - "href": "BuildFromProject.Inheritdoc.html", - "topicHref": "BuildFromProject.Inheritdoc.html" - }, - { - "name": "Inheritdoc.Issue6366", - "href": "BuildFromProject.Inheritdoc.Issue6366.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.html" - }, - { - "name": "Inheritdoc.Issue6366.Class1", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class1-1.html" - }, - { - "name": "Inheritdoc.Issue6366.Class2", - "href": "BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue6366.Class2.html" - }, - { - "name": "Inheritdoc.Issue7035", - "href": "BuildFromProject.Inheritdoc.Issue7035.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7035.html" - }, - { - "name": "Inheritdoc.Issue7484", - "href": "BuildFromProject.Inheritdoc.Issue7484.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue7484.html" - }, - { - "name": "Inheritdoc.Issue8101", - "href": "BuildFromProject.Inheritdoc.Issue8101.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8101.html" - }, - { - "name": "Issue8725", - "href": "BuildFromProject.Issue8725.html", - "topicHref": "BuildFromProject.Issue8725.html" - }, - { - "name": "Structs" - }, - { - "name": "Inheritdoc.Issue8129", - "href": "BuildFromProject.Inheritdoc.Issue8129.html", - "topicHref": "BuildFromProject.Inheritdoc.Issue8129.html" - }, - { - "name": "Interfaces" - }, - { - "name": "Class1.IIssue8948", - "href": "BuildFromProject.Class1.IIssue8948.html", - "topicHref": "BuildFromProject.Class1.IIssue8948.html" - }, - { - "name": "IInheritdoc", - "href": "BuildFromProject.IInheritdoc.html", - "topicHref": "BuildFromProject.IInheritdoc.html" - }, - { - "name": "Enums" - }, - { - "name": "Class1.Issue9260", - "href": "BuildFromProject.Class1.Issue9260.html", - "topicHref": "BuildFromProject.Class1.Issue9260.html" - } - ] - }, - { - "name": "BuildFromVBSourceCode", - "href": "BuildFromVBSourceCode.html", - "topicHref": "BuildFromVBSourceCode.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "BaseClass1", - "href": "BuildFromVBSourceCode.BaseClass1.html", - "topicHref": "BuildFromVBSourceCode.BaseClass1.html" - }, - { - "name": "Class1", - "href": "BuildFromVBSourceCode.Class1.html", - "topicHref": "BuildFromVBSourceCode.Class1.html" - } - ] - }, - { - "name": "CatLibrary", - "href": "CatLibrary.html", - "topicHref": "CatLibrary.html", - "items": [ - { - "name": "Core", - "href": "CatLibrary.Core.html", - "topicHref": "CatLibrary.Core.html", - "items": [ - { - "name": "Classes" - }, - { - "name": "ContainersRefType.ContainersRefTypeChild", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html" - }, - { - "name": "ExplicitLayoutClass", - "href": "CatLibrary.Core.ExplicitLayoutClass.html", - "topicHref": "CatLibrary.Core.ExplicitLayoutClass.html" - }, - { - "name": "Issue231", - "href": "CatLibrary.Core.Issue231.html", - "topicHref": "CatLibrary.Core.Issue231.html" - }, - { - "name": "Structs" - }, - { - "name": "ContainersRefType", - "href": "CatLibrary.Core.ContainersRefType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.html" - }, - { - "name": "Interfaces" - }, - { - "name": "ContainersRefType.ContainersRefTypeChildInterface", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html" - }, - { - "name": "Enums" - }, - { - "name": "ContainersRefType.ColorType", - "href": "CatLibrary.Core.ContainersRefType.ColorType.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ColorType.html" - }, - { - "name": "Delegates" - }, - { - "name": "ContainersRefType.ContainersRefTypeDelegate", - "href": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicHref": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html" - } - ] - }, - { - "name": "Classes" - }, - { - "name": "Cat", - "href": "CatLibrary.Cat-2.html", - "topicHref": "CatLibrary.Cat-2.html" - }, - { - "name": "CatException", - "href": "CatLibrary.CatException-1.html", - "topicHref": "CatLibrary.CatException-1.html" - }, - { - "name": "Complex", - "href": "CatLibrary.Complex-2.html", - "topicHref": "CatLibrary.Complex-2.html" - }, - { - "name": "ICatExtension", - "href": "CatLibrary.ICatExtension.html", - "topicHref": "CatLibrary.ICatExtension.html" - }, - { - "name": "Tom", - "href": "CatLibrary.Tom.html", - "topicHref": "CatLibrary.Tom.html" - }, - { - "name": "TomFromBaseClass", - "href": "CatLibrary.TomFromBaseClass.html", - "topicHref": "CatLibrary.TomFromBaseClass.html" - }, - { - "name": "Interfaces" - }, - { - "name": "IAnimal", - "href": "CatLibrary.IAnimal.html", - "topicHref": "CatLibrary.IAnimal.html" - }, - { - "name": "ICat", - "href": "CatLibrary.ICat.html", - "topicHref": "CatLibrary.ICat.html" - }, - { - "name": "Delegates" - }, - { - "name": "FakeDelegate", - "href": "CatLibrary.FakeDelegate-1.html", - "topicHref": "CatLibrary.FakeDelegate-1.html" - }, - { - "name": "MRefDelegate", - "href": "CatLibrary.MRefDelegate-3.html", - "topicHref": "CatLibrary.MRefDelegate-3.html" - }, - { - "name": "MRefNormalDelegate", - "href": "CatLibrary.MRefNormalDelegate.html", - "topicHref": "CatLibrary.MRefNormalDelegate.html" - } - ] - }, - { - "name": "MRef", - "href": "MRef.html", - "topicHref": "MRef.html", - "items": [ - { - "name": "Demo", - "href": "MRef.Demo.html", - "topicHref": "MRef.Demo.html", - "items": [ - { - "name": "Enumeration", - "href": "MRef.Demo.Enumeration.html", - "topicHref": "MRef.Demo.Enumeration.html", - "items": [ - { - "name": "Enums" - }, - { - "name": "ColorType", - "href": "MRef.Demo.Enumeration.ColorType.html", - "topicHref": "MRef.Demo.Enumeration.ColorType.html" - } - ] - } - ] - } - ] - } - ], - "pdf": true, - "pdfTocPage": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/cover.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/cover.html.view.verified.json deleted file mode 100644 index 39f781f3411..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/cover.html.view.verified.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "conceptual": "\n
        \n

        \n

        DOCFX PDF SAMPLE

        \n
        \n", - "type": "Conceptual", - "source": { - "remote": { - "path": "samples/seed/pdf/cover.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "path": "pdf/cover.md", - "documentation": { - "remote": { - "path": "samples/seed/pdf/cover.md", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "rawTitle": "", - "title": "DOCFX PDF SAMPLE", - "wordCount": 3.0, - "_key": "pdf/cover.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "pdf/cover.html", - "_rel": "../", - "_tocKey": "~/toc.yml", - "_tocPath": "toc.html", - "_tocRel": "../toc.html", - "_disableToc": true, - "docurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/pdf/cover.md/#L1" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.html.view.verified.json deleted file mode 100644 index 55a9708c2e8..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.html.view.verified.json +++ /dev/null @@ -1,673 +0,0 @@ -{ - "order": 200.0, - "items": [ - { - "name": "Articles", - "includedFrom": "~/articles/toc.yml", - "items": [ - { - "name": "Getting Started with docfx", - "href": "../articles/docfx_getting_started.html", - "topicHref": "../articles/docfx_getting_started.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Engineering Docs", - "items": [ - { - "name": "Section 1", - "topicHref": null, - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Engineering Guidelines", - "href": "../articles/engineering_guidelines.html", - "topicHref": "../articles/engineering_guidelines.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "C# Coding Standards", - "href": "../articles/csharp_coding_standards.html", - "topicHref": "../articles/csharp_coding_standards.html", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - } - ], - "expanded": true, - "topicHref": null, - "tocHref": null, - "level": 3.0 - }, - { - "name": "Markdown", - "href": "../articles/markdown.html", - "topicHref": "../articles/markdown.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Microsoft Docs", - "href": "https://docs.microsoft.com/en-us/", - "topicHref": "https://docs.microsoft.com/en-us/", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "topicHref": null, - "tocHref": null, - "level": 2.0 - }, - { - "name": "API Documentation", - "includedFrom": "~/obj/api/toc.yml", - "items": [ - { - "name": "BuildFromAssembly", - "href": "../api/BuildFromAssembly.html", - "topicHref": "../api/BuildFromAssembly.html", - "topicUid": "BuildFromAssembly", - "items": [ - { - "name": "Class1", - "href": "../api/BuildFromAssembly.Class1.html", - "topicHref": "../api/BuildFromAssembly.Class1.html", - "topicUid": "BuildFromAssembly.Class1", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Issue5432", - "href": "../api/BuildFromAssembly.Issue5432.html", - "topicHref": "../api/BuildFromAssembly.Issue5432.html", - "topicUid": "BuildFromAssembly.Issue5432", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "BuildFromCSharpSourceCode", - "href": "../api/BuildFromCSharpSourceCode.html", - "topicHref": "../api/BuildFromCSharpSourceCode.html", - "topicUid": "BuildFromCSharpSourceCode", - "items": [ - { - "name": "CSharp", - "href": "../api/BuildFromCSharpSourceCode.CSharp.html", - "topicHref": "../api/BuildFromCSharpSourceCode.CSharp.html", - "topicUid": "BuildFromCSharpSourceCode.CSharp", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "BuildFromProject", - "href": "../api/BuildFromProject.html", - "topicHref": "../api/BuildFromProject.html", - "topicUid": "BuildFromProject", - "items": [ - { - "name": "Issue8540", - "href": "../api/BuildFromProject.Issue8540.html", - "topicHref": "../api/BuildFromProject.Issue8540.html", - "topicUid": "BuildFromProject.Issue8540", - "items": [ - { - "name": "A", - "href": "../api/BuildFromProject.Issue8540.A.html", - "topicHref": "../api/BuildFromProject.Issue8540.A.html", - "topicUid": "BuildFromProject.Issue8540.A", - "items": [ - { - "name": "A", - "href": "../api/BuildFromProject.Issue8540.A.A.html", - "topicHref": "../api/BuildFromProject.Issue8540.A.A.html", - "topicUid": "BuildFromProject.Issue8540.A.A", - "tocHref": null, - "level": 6.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 5.0 - }, - { - "name": "B", - "href": "../api/BuildFromProject.Issue8540.B.html", - "topicHref": "../api/BuildFromProject.Issue8540.B.html", - "topicUid": "BuildFromProject.Issue8540.B", - "items": [ - { - "name": "B", - "href": "../api/BuildFromProject.Issue8540.B.B.html", - "topicHref": "../api/BuildFromProject.Issue8540.B.B.html", - "topicUid": "BuildFromProject.Issue8540.B.B", - "tocHref": null, - "level": 6.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 5.0 - } - ], - "tocHref": null, - "level": 4.0 - }, - { - "name": "Class1", - "href": "../api/BuildFromProject.Class1.html", - "topicHref": "../api/BuildFromProject.Class1.html", - "topicUid": "BuildFromProject.Class1", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.IIssue8948", - "href": "../api/BuildFromProject.Class1.IIssue8948.html", - "topicHref": "../api/BuildFromProject.Class1.IIssue8948.html", - "topicUid": "BuildFromProject.Class1.IIssue8948", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8665", - "href": "../api/BuildFromProject.Class1.Issue8665.html", - "topicHref": "../api/BuildFromProject.Class1.Issue8665.html", - "topicUid": "BuildFromProject.Class1.Issue8665", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8696Attribute", - "href": "../api/BuildFromProject.Class1.Issue8696Attribute.html", - "topicHref": "../api/BuildFromProject.Class1.Issue8696Attribute.html", - "topicUid": "BuildFromProject.Class1.Issue8696Attribute", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue8948", - "href": "../api/BuildFromProject.Class1.Issue8948.html", - "topicHref": "../api/BuildFromProject.Class1.Issue8948.html", - "topicUid": "BuildFromProject.Class1.Issue8948", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Issue9260", - "href": "../api/BuildFromProject.Class1.Issue9260.html", - "topicHref": "../api/BuildFromProject.Class1.Issue9260.html", - "topicUid": "BuildFromProject.Class1.Issue9260", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Class1.Test", - "href": "../api/BuildFromProject.Class1.Test-1.html", - "topicHref": "../api/BuildFromProject.Class1.Test-1.html", - "topicUid": "BuildFromProject.Class1.Test`1", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Dog", - "href": "../api/BuildFromProject.Dog.html", - "topicHref": "../api/BuildFromProject.Dog.html", - "topicUid": "BuildFromProject.Dog", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "IInheritdoc", - "href": "../api/BuildFromProject.IInheritdoc.html", - "topicHref": "../api/BuildFromProject.IInheritdoc.html", - "topicUid": "BuildFromProject.IInheritdoc", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc", - "href": "../api/BuildFromProject.Inheritdoc.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.html", - "topicUid": "BuildFromProject.Inheritdoc", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366", - "href": "../api/BuildFromProject.Inheritdoc.Issue6366.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue6366.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366.Class1", - "href": "../api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366.Class1`1", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue6366.Class2", - "href": "../api/BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366.Class2", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue7035", - "href": "../api/BuildFromProject.Inheritdoc.Issue7035.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue7035.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue7035", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue7484", - "href": "../api/BuildFromProject.Inheritdoc.Issue7484.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue7484.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue7484", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue8101", - "href": "../api/BuildFromProject.Inheritdoc.Issue8101.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue8101.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue8101", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Inheritdoc.Issue8129", - "href": "../api/BuildFromProject.Inheritdoc.Issue8129.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue8129.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue8129", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Issue8725", - "href": "../api/BuildFromProject.Issue8725.html", - "topicHref": "../api/BuildFromProject.Issue8725.html", - "topicUid": "BuildFromProject.Issue8725", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "BuildFromVBSourceCode", - "href": "../api/BuildFromVBSourceCode.html", - "topicHref": "../api/BuildFromVBSourceCode.html", - "topicUid": "BuildFromVBSourceCode", - "items": [ - { - "name": "BaseClass1", - "href": "../api/BuildFromVBSourceCode.BaseClass1.html", - "topicHref": "../api/BuildFromVBSourceCode.BaseClass1.html", - "topicUid": "BuildFromVBSourceCode.BaseClass1", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Class1", - "href": "../api/BuildFromVBSourceCode.Class1.html", - "topicHref": "../api/BuildFromVBSourceCode.Class1.html", - "topicUid": "BuildFromVBSourceCode.Class1", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "CatLibrary", - "href": "../api/CatLibrary.html", - "topicHref": "../api/CatLibrary.html", - "topicUid": "CatLibrary", - "items": [ - { - "name": "Core", - "href": "../api/CatLibrary.Core.html", - "topicHref": "../api/CatLibrary.Core.html", - "topicUid": "CatLibrary.Core", - "items": [ - { - "name": "ContainersRefType", - "href": "../api/CatLibrary.Core.ContainersRefType.html", - "topicHref": "../api/CatLibrary.Core.ContainersRefType.html", - "topicUid": "CatLibrary.Core.ContainersRefType", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ColorType", - "href": "../api/CatLibrary.Core.ContainersRefType.ColorType.html", - "topicHref": "../api/CatLibrary.Core.ContainersRefType.ColorType.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ColorType", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeChild", - "href": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicHref": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeChildInterface", - "href": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicHref": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "ContainersRefType.ContainersRefTypeDelegate", - "href": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicHref": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "ExplicitLayoutClass", - "href": "../api/CatLibrary.Core.ExplicitLayoutClass.html", - "topicHref": "../api/CatLibrary.Core.ExplicitLayoutClass.html", - "topicUid": "CatLibrary.Core.ExplicitLayoutClass", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - }, - { - "name": "Issue231", - "href": "../api/CatLibrary.Core.Issue231.html", - "topicHref": "../api/CatLibrary.Core.Issue231.html", - "topicUid": "CatLibrary.Core.Issue231", - "tocHref": null, - "level": 5.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 4.0 - }, - { - "name": "CatException", - "href": "../api/CatLibrary.CatException-1.html", - "topicHref": "../api/CatLibrary.CatException-1.html", - "topicUid": "CatLibrary.CatException`1", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Cat", - "href": "../api/CatLibrary.Cat-2.html", - "topicHref": "../api/CatLibrary.Cat-2.html", - "topicUid": "CatLibrary.Cat`2", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Complex", - "href": "../api/CatLibrary.Complex-2.html", - "topicHref": "../api/CatLibrary.Complex-2.html", - "topicUid": "CatLibrary.Complex`2", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "FakeDelegate", - "href": "../api/CatLibrary.FakeDelegate-1.html", - "topicHref": "../api/CatLibrary.FakeDelegate-1.html", - "topicUid": "CatLibrary.FakeDelegate`1", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "IAnimal", - "href": "../api/CatLibrary.IAnimal.html", - "topicHref": "../api/CatLibrary.IAnimal.html", - "topicUid": "CatLibrary.IAnimal", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ICat", - "href": "../api/CatLibrary.ICat.html", - "topicHref": "../api/CatLibrary.ICat.html", - "topicUid": "CatLibrary.ICat", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "ICatExtension", - "href": "../api/CatLibrary.ICatExtension.html", - "topicHref": "../api/CatLibrary.ICatExtension.html", - "topicUid": "CatLibrary.ICatExtension", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "MRefDelegate", - "href": "../api/CatLibrary.MRefDelegate-3.html", - "topicHref": "../api/CatLibrary.MRefDelegate-3.html", - "topicUid": "CatLibrary.MRefDelegate`3", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "MRefNormalDelegate", - "href": "../api/CatLibrary.MRefNormalDelegate.html", - "topicHref": "../api/CatLibrary.MRefNormalDelegate.html", - "topicUid": "CatLibrary.MRefNormalDelegate", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "Tom", - "href": "../api/CatLibrary.Tom.html", - "topicHref": "../api/CatLibrary.Tom.html", - "topicUid": "CatLibrary.Tom", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - }, - { - "name": "TomFromBaseClass", - "href": "../api/CatLibrary.TomFromBaseClass.html", - "topicHref": "../api/CatLibrary.TomFromBaseClass.html", - "topicUid": "CatLibrary.TomFromBaseClass", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 3.0 - }, - { - "name": "MRef.Demo.Enumeration", - "href": "../api/MRef.Demo.Enumeration.html", - "topicHref": "../api/MRef.Demo.Enumeration.html", - "topicUid": "MRef.Demo.Enumeration", - "items": [ - { - "name": "ColorType", - "href": "../api/MRef.Demo.Enumeration.ColorType.html", - "topicHref": "../api/MRef.Demo.Enumeration.ColorType.html", - "topicUid": "MRef.Demo.Enumeration.ColorType", - "tocHref": null, - "level": 4.0, - "items": [], - "leaf": true - } - ], - "tocHref": null, - "level": 3.0 - } - ], - "topicHref": null, - "tocHref": null, - "level": 2.0 - }, - { - "name": "REST API", - "includedFrom": "~/restapi/toc.md", - "items": [ - { - "name": "Pet Store API", - "href": "../restapi/petstore.html", - "topicHref": "../restapi/petstore.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "Contacts API", - "href": "../restapi/contacts.html", - "topicHref": "../restapi/contacts.html", - "tocHref": null, - "level": 3.0, - "items": [], - "leaf": true - } - ], - "topicHref": null, - "tocHref": null, - "level": 2.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "pdf/toc.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "pdf/toc.html", - "_rel": "../", - "_tocKey": "~/pdf/toc.yml", - "_tocPath": "pdf/toc.html", - "_tocRel": "toc.html", - "topicHref": null, - "tocHref": null, - "name": null, - "level": 1.0, - "leaf": false, - "title": "Table of Content", - "_disableToc": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.json.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.json.view.verified.json deleted file mode 100644 index 24a2e50ac90..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.json.view.verified.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "content": "{\"order\":200,\"items\":[{\"name\":\"Articles\",\"includedFrom\":\"~/articles/toc.yml\",\"items\":[{\"name\":\"Getting Started with docfx\",\"href\":\"../articles/docfx_getting_started.html\",\"topicHref\":\"../articles/docfx_getting_started.html\"},{\"name\":\"Engineering Docs\",\"items\":[{\"name\":\"Section 1\"},{\"name\":\"Engineering Guidelines\",\"href\":\"../articles/engineering_guidelines.html\",\"topicHref\":\"../articles/engineering_guidelines.html\"},{\"name\":\"C# Coding Standards\",\"href\":\"../articles/csharp_coding_standards.html\",\"topicHref\":\"../articles/csharp_coding_standards.html\"}],\"expanded\":true},{\"name\":\"Markdown\",\"href\":\"../articles/markdown.html\",\"topicHref\":\"../articles/markdown.html\"},{\"name\":\"Microsoft Docs\",\"href\":\"https://docs.microsoft.com/en-us/\",\"topicHref\":\"https://docs.microsoft.com/en-us/\"}]},{\"name\":\"API Documentation\",\"includedFrom\":\"~/obj/api/toc.yml\",\"items\":[{\"name\":\"BuildFromAssembly\",\"href\":\"../api/BuildFromAssembly.html\",\"topicHref\":\"../api/BuildFromAssembly.html\",\"topicUid\":\"BuildFromAssembly\",\"items\":[{\"name\":\"Class1\",\"href\":\"../api/BuildFromAssembly.Class1.html\",\"topicHref\":\"../api/BuildFromAssembly.Class1.html\",\"topicUid\":\"BuildFromAssembly.Class1\"},{\"name\":\"Issue5432\",\"href\":\"../api/BuildFromAssembly.Issue5432.html\",\"topicHref\":\"../api/BuildFromAssembly.Issue5432.html\",\"topicUid\":\"BuildFromAssembly.Issue5432\"}]},{\"name\":\"BuildFromCSharpSourceCode\",\"href\":\"../api/BuildFromCSharpSourceCode.html\",\"topicHref\":\"../api/BuildFromCSharpSourceCode.html\",\"topicUid\":\"BuildFromCSharpSourceCode\",\"items\":[{\"name\":\"CSharp\",\"href\":\"../api/BuildFromCSharpSourceCode.CSharp.html\",\"topicHref\":\"../api/BuildFromCSharpSourceCode.CSharp.html\",\"topicUid\":\"BuildFromCSharpSourceCode.CSharp\"}]},{\"name\":\"BuildFromProject\",\"href\":\"../api/BuildFromProject.html\",\"topicHref\":\"../api/BuildFromProject.html\",\"topicUid\":\"BuildFromProject\",\"items\":[{\"name\":\"Issue8540\",\"href\":\"../api/BuildFromProject.Issue8540.html\",\"topicHref\":\"../api/BuildFromProject.Issue8540.html\",\"topicUid\":\"BuildFromProject.Issue8540\",\"items\":[{\"name\":\"A\",\"href\":\"../api/BuildFromProject.Issue8540.A.html\",\"topicHref\":\"../api/BuildFromProject.Issue8540.A.html\",\"topicUid\":\"BuildFromProject.Issue8540.A\",\"items\":[{\"name\":\"A\",\"href\":\"../api/BuildFromProject.Issue8540.A.A.html\",\"topicHref\":\"../api/BuildFromProject.Issue8540.A.A.html\",\"topicUid\":\"BuildFromProject.Issue8540.A.A\"}]},{\"name\":\"B\",\"href\":\"../api/BuildFromProject.Issue8540.B.html\",\"topicHref\":\"../api/BuildFromProject.Issue8540.B.html\",\"topicUid\":\"BuildFromProject.Issue8540.B\",\"items\":[{\"name\":\"B\",\"href\":\"../api/BuildFromProject.Issue8540.B.B.html\",\"topicHref\":\"../api/BuildFromProject.Issue8540.B.B.html\",\"topicUid\":\"BuildFromProject.Issue8540.B.B\"}]}]},{\"name\":\"Class1\",\"href\":\"../api/BuildFromProject.Class1.html\",\"topicHref\":\"../api/BuildFromProject.Class1.html\",\"topicUid\":\"BuildFromProject.Class1\"},{\"name\":\"Class1.IIssue8948\",\"href\":\"../api/BuildFromProject.Class1.IIssue8948.html\",\"topicHref\":\"../api/BuildFromProject.Class1.IIssue8948.html\",\"topicUid\":\"BuildFromProject.Class1.IIssue8948\"},{\"name\":\"Class1.Issue8665\",\"href\":\"../api/BuildFromProject.Class1.Issue8665.html\",\"topicHref\":\"../api/BuildFromProject.Class1.Issue8665.html\",\"topicUid\":\"BuildFromProject.Class1.Issue8665\"},{\"name\":\"Class1.Issue8696Attribute\",\"href\":\"../api/BuildFromProject.Class1.Issue8696Attribute.html\",\"topicHref\":\"../api/BuildFromProject.Class1.Issue8696Attribute.html\",\"topicUid\":\"BuildFromProject.Class1.Issue8696Attribute\"},{\"name\":\"Class1.Issue8948\",\"href\":\"../api/BuildFromProject.Class1.Issue8948.html\",\"topicHref\":\"../api/BuildFromProject.Class1.Issue8948.html\",\"topicUid\":\"BuildFromProject.Class1.Issue8948\"},{\"name\":\"Class1.Issue9260\",\"href\":\"../api/BuildFromProject.Class1.Issue9260.html\",\"topicHref\":\"../api/BuildFromProject.Class1.Issue9260.html\",\"topicUid\":\"BuildFromProject.Class1.Issue9260\"},{\"name\":\"Class1.Test\",\"href\":\"../api/BuildFromProject.Class1.Test-1.html\",\"topicHref\":\"../api/BuildFromProject.Class1.Test-1.html\",\"topicUid\":\"BuildFromProject.Class1.Test`1\"},{\"name\":\"Dog\",\"href\":\"../api/BuildFromProject.Dog.html\",\"topicHref\":\"../api/BuildFromProject.Dog.html\",\"topicUid\":\"BuildFromProject.Dog\"},{\"name\":\"IInheritdoc\",\"href\":\"../api/BuildFromProject.IInheritdoc.html\",\"topicHref\":\"../api/BuildFromProject.IInheritdoc.html\",\"topicUid\":\"BuildFromProject.IInheritdoc\"},{\"name\":\"Inheritdoc\",\"href\":\"../api/BuildFromProject.Inheritdoc.html\",\"topicHref\":\"../api/BuildFromProject.Inheritdoc.html\",\"topicUid\":\"BuildFromProject.Inheritdoc\"},{\"name\":\"Inheritdoc.Issue6366\",\"href\":\"../api/BuildFromProject.Inheritdoc.Issue6366.html\",\"topicHref\":\"../api/BuildFromProject.Inheritdoc.Issue6366.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue6366\"},{\"name\":\"Inheritdoc.Issue6366.Class1\",\"href\":\"../api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html\",\"topicHref\":\"../api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue6366.Class1`1\"},{\"name\":\"Inheritdoc.Issue6366.Class2\",\"href\":\"../api/BuildFromProject.Inheritdoc.Issue6366.Class2.html\",\"topicHref\":\"../api/BuildFromProject.Inheritdoc.Issue6366.Class2.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue6366.Class2\"},{\"name\":\"Inheritdoc.Issue7035\",\"href\":\"../api/BuildFromProject.Inheritdoc.Issue7035.html\",\"topicHref\":\"../api/BuildFromProject.Inheritdoc.Issue7035.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue7035\"},{\"name\":\"Inheritdoc.Issue7484\",\"href\":\"../api/BuildFromProject.Inheritdoc.Issue7484.html\",\"topicHref\":\"../api/BuildFromProject.Inheritdoc.Issue7484.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue7484\"},{\"name\":\"Inheritdoc.Issue8101\",\"href\":\"../api/BuildFromProject.Inheritdoc.Issue8101.html\",\"topicHref\":\"../api/BuildFromProject.Inheritdoc.Issue8101.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue8101\"},{\"name\":\"Inheritdoc.Issue8129\",\"href\":\"../api/BuildFromProject.Inheritdoc.Issue8129.html\",\"topicHref\":\"../api/BuildFromProject.Inheritdoc.Issue8129.html\",\"topicUid\":\"BuildFromProject.Inheritdoc.Issue8129\"},{\"name\":\"Issue8725\",\"href\":\"../api/BuildFromProject.Issue8725.html\",\"topicHref\":\"../api/BuildFromProject.Issue8725.html\",\"topicUid\":\"BuildFromProject.Issue8725\"}]},{\"name\":\"BuildFromVBSourceCode\",\"href\":\"../api/BuildFromVBSourceCode.html\",\"topicHref\":\"../api/BuildFromVBSourceCode.html\",\"topicUid\":\"BuildFromVBSourceCode\",\"items\":[{\"name\":\"BaseClass1\",\"href\":\"../api/BuildFromVBSourceCode.BaseClass1.html\",\"topicHref\":\"../api/BuildFromVBSourceCode.BaseClass1.html\",\"topicUid\":\"BuildFromVBSourceCode.BaseClass1\"},{\"name\":\"Class1\",\"href\":\"../api/BuildFromVBSourceCode.Class1.html\",\"topicHref\":\"../api/BuildFromVBSourceCode.Class1.html\",\"topicUid\":\"BuildFromVBSourceCode.Class1\"}]},{\"name\":\"CatLibrary\",\"href\":\"../api/CatLibrary.html\",\"topicHref\":\"../api/CatLibrary.html\",\"topicUid\":\"CatLibrary\",\"items\":[{\"name\":\"Core\",\"href\":\"../api/CatLibrary.Core.html\",\"topicHref\":\"../api/CatLibrary.Core.html\",\"topicUid\":\"CatLibrary.Core\",\"items\":[{\"name\":\"ContainersRefType\",\"href\":\"../api/CatLibrary.Core.ContainersRefType.html\",\"topicHref\":\"../api/CatLibrary.Core.ContainersRefType.html\",\"topicUid\":\"CatLibrary.Core.ContainersRefType\"},{\"name\":\"ContainersRefType.ColorType\",\"href\":\"../api/CatLibrary.Core.ContainersRefType.ColorType.html\",\"topicHref\":\"../api/CatLibrary.Core.ContainersRefType.ColorType.html\",\"topicUid\":\"CatLibrary.Core.ContainersRefType.ColorType\"},{\"name\":\"ContainersRefType.ContainersRefTypeChild\",\"href\":\"../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html\",\"topicHref\":\"../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html\",\"topicUid\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChild\"},{\"name\":\"ContainersRefType.ContainersRefTypeChildInterface\",\"href\":\"../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html\",\"topicHref\":\"../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html\",\"topicUid\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface\"},{\"name\":\"ContainersRefType.ContainersRefTypeDelegate\",\"href\":\"../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html\",\"topicHref\":\"../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html\",\"topicUid\":\"CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate\"},{\"name\":\"ExplicitLayoutClass\",\"href\":\"../api/CatLibrary.Core.ExplicitLayoutClass.html\",\"topicHref\":\"../api/CatLibrary.Core.ExplicitLayoutClass.html\",\"topicUid\":\"CatLibrary.Core.ExplicitLayoutClass\"},{\"name\":\"Issue231\",\"href\":\"../api/CatLibrary.Core.Issue231.html\",\"topicHref\":\"../api/CatLibrary.Core.Issue231.html\",\"topicUid\":\"CatLibrary.Core.Issue231\"}]},{\"name\":\"CatException\",\"href\":\"../api/CatLibrary.CatException-1.html\",\"topicHref\":\"../api/CatLibrary.CatException-1.html\",\"topicUid\":\"CatLibrary.CatException`1\"},{\"name\":\"Cat\",\"href\":\"../api/CatLibrary.Cat-2.html\",\"topicHref\":\"../api/CatLibrary.Cat-2.html\",\"topicUid\":\"CatLibrary.Cat`2\"},{\"name\":\"Complex\",\"href\":\"../api/CatLibrary.Complex-2.html\",\"topicHref\":\"../api/CatLibrary.Complex-2.html\",\"topicUid\":\"CatLibrary.Complex`2\"},{\"name\":\"FakeDelegate\",\"href\":\"../api/CatLibrary.FakeDelegate-1.html\",\"topicHref\":\"../api/CatLibrary.FakeDelegate-1.html\",\"topicUid\":\"CatLibrary.FakeDelegate`1\"},{\"name\":\"IAnimal\",\"href\":\"../api/CatLibrary.IAnimal.html\",\"topicHref\":\"../api/CatLibrary.IAnimal.html\",\"topicUid\":\"CatLibrary.IAnimal\"},{\"name\":\"ICat\",\"href\":\"../api/CatLibrary.ICat.html\",\"topicHref\":\"../api/CatLibrary.ICat.html\",\"topicUid\":\"CatLibrary.ICat\"},{\"name\":\"ICatExtension\",\"href\":\"../api/CatLibrary.ICatExtension.html\",\"topicHref\":\"../api/CatLibrary.ICatExtension.html\",\"topicUid\":\"CatLibrary.ICatExtension\"},{\"name\":\"MRefDelegate\",\"href\":\"../api/CatLibrary.MRefDelegate-3.html\",\"topicHref\":\"../api/CatLibrary.MRefDelegate-3.html\",\"topicUid\":\"CatLibrary.MRefDelegate`3\"},{\"name\":\"MRefNormalDelegate\",\"href\":\"../api/CatLibrary.MRefNormalDelegate.html\",\"topicHref\":\"../api/CatLibrary.MRefNormalDelegate.html\",\"topicUid\":\"CatLibrary.MRefNormalDelegate\"},{\"name\":\"Tom\",\"href\":\"../api/CatLibrary.Tom.html\",\"topicHref\":\"../api/CatLibrary.Tom.html\",\"topicUid\":\"CatLibrary.Tom\"},{\"name\":\"TomFromBaseClass\",\"href\":\"../api/CatLibrary.TomFromBaseClass.html\",\"topicHref\":\"../api/CatLibrary.TomFromBaseClass.html\",\"topicUid\":\"CatLibrary.TomFromBaseClass\"}]},{\"name\":\"MRef.Demo.Enumeration\",\"href\":\"../api/MRef.Demo.Enumeration.html\",\"topicHref\":\"../api/MRef.Demo.Enumeration.html\",\"topicUid\":\"MRef.Demo.Enumeration\",\"items\":[{\"name\":\"ColorType\",\"href\":\"../api/MRef.Demo.Enumeration.ColorType.html\",\"topicHref\":\"../api/MRef.Demo.Enumeration.ColorType.html\",\"topicUid\":\"MRef.Demo.Enumeration.ColorType\"}]}]},{\"name\":\"REST API\",\"includedFrom\":\"~/restapi/toc.md\",\"items\":[{\"name\":\"Pet Store API\",\"href\":\"../restapi/petstore.html\",\"topicHref\":\"../restapi/petstore.html\"},{\"name\":\"Contacts API\",\"href\":\"../restapi/contacts.html\",\"topicHref\":\"../restapi/contacts.html\"}]}],\"pdf\":true,\"pdfTocPage\":true}" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.pdf.verified.json deleted file mode 100644 index 63e06dad013..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.pdf.verified.json +++ /dev/null @@ -1,9699 +0,0 @@ -{ - "NumberOfPages": 127, - "Pages": [ - { - "Number": 1, - "Text": "Table of ContentsArticlesGetting Started with docfx3Engineering DocsSection 1Engineering Guidelines5C# Coding Standards8Markdown15Microsoft DocsAPI DocumentationBuildFromAssembly20Class121Issue543222BuildFromCSharpSourceCode23CSharp24BuildFromProject25Issue854027A28A29B30B31Class132Class1.IIssue894837Class1.Issue866538Class1.Issue8696Attribute41Class1.Issue894843Class1.Issue926044Class1.Test45Dog46IInheritdoc48Inheritdoc49Inheritdoc.Issue636651Inheritdoc.Issue6366.Class152Inheritdoc.Issue6366.Class254Inheritdoc.Issue703555Inheritdoc.Issue748456Inheritdoc.Issue810158Inheritdoc.Issue812960Issue872561", - "Links": [ - { - "Uri": "https://docs.microsoft.com/en-us/" - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 22, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 23, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 29, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 60, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 2, - "Text": "BuildFromVBSourceCode62BaseClass163Class164CatLibrary66Core68ContainersRefType69ContainersRefType.ColorType71ContainersRefType.ContainersRefTypeChild72ContainersRefType.ContainersRefTypeChildInterface73ContainersRefType.ContainersRefTypeDelegate74ExplicitLayoutClass75Issue23176CatException77Cat78Complex87FakeDelegate88IAnimal89ICat92ICatExtension93MRefDelegate95MRefNormalDelegate96Tom97TomFromBaseClass99MRef.Demo.Enumeration100ColorType101REST APIPet Store API102Contacts API117", - "Links": [ - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 63, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 87, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 88, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 89, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 92, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 95, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 96, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 97, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 100, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 101, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 102, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 117, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 3, - "NumberOfImages": 1, - "Text": "3 / 127Getting Started with docfxGetting StartedThis is a seed.", - "Links": [ - { - "Uri": "" - }, - { - "Uri": "" - } - ] - }, - { - "Number": 4, - "Text": "4 / 127docfx 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 / 127Engineering 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 / 127NustacheYamlDotNetCode 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 / 127The 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": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 8, - "Text": "8 / 127C# 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" - }, - { - "Uri": "http://msdn.microsoft.com/en-us/library/ms229042.aspx" - }, - { - "Uri": "http://msdn.microsoft.com/en-us/library/ms229042.aspx" - }, - { - "Uri": "http://www.jetbrains.com/resharper/" - }, - { - "Uri": "http://www.jetbrains.com/resharper/" - }, - { - "Uri": "http://www.jetbrains.com/resharper/" - }, - { - "Uri": "http://stylecop.codeplex.com/" - }, - { - "Uri": "http://stylecop.codeplex.com/" - }, - { - "Uri": "http://stylecop.codeplex.com/" - }, - { - "Uri": "http://codebox/SDLFxCop" - }, - { - "Uri": "http://codebox/SDLFxCop" - }, - { - "Uri": "http://codebox/SDLFxCop" - }, - { - "Uri": "http://toolbox/22561" - }, - { - "Uri": "http://toolbox/22561" - }, - { - "Uri": "http://toolbox/22561" - } - ] - }, - { - "Number": 9, - "Text": "9 / 127daily 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 / 127DO 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" - }, - { - "Uri": "http://msdn.microsoft.com/en-us/library/ms229043.aspx" - }, - { - "Uri": "http://msdn.microsoft.com/en-us/library/ms229043.aspx" - } - ] - }, - { - "Number": 11, - "Text": "11 / 127DO 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 / 127Unit 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 / 127the 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 / 127For functional tests it is reasonable to disable parallel tests.", - "Links": [] - }, - { - "Number": 15, - "Text": "15 / 127MarkdownMarkdown\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/" - }, - { - "Uri": "https://daringfireball.net/projects/markdown/" - }, - { - "Uri": "https://daringfireball.net/projects/markdown/" - }, - { - "Uri": "https://commonmark.org/" - }, - { - "Uri": "https://commonmark.org/" - }, - { - "Uri": "https://commonmark.org/" - }, - { - "Uri": "https://github.com/xoofx/markdig" - }, - { - "Uri": "https://github.com/xoofx/markdig" - }, - { - "Uri": "https://github.com/xoofx/markdig" - }, - { - "Goto": { - "PageNumber": 17, - "Coordinates": { - "Left": 28, - "Top": 211.24994 - } - } - } - ] - }, - { - "Number": 16, - "NumberOfImages": 1, - "Text": "16 / 127ImageMermaid 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" - }, - { - "Uri": "https://learn.microsoft.com/en-us/media/learn/not-found/learn-not-found-light-mode.png?branch=main" - } - ] - }, - { - "Number": 17, - "Text": "17 / 127Math 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 / 127Custom 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": { - "PageNumber": 18, - "Coordinates": { - "Left": 28, - "Top": 574.99994 - } - } - } - ] - }, - { - "Number": 19, - "Text": "19 / 127It'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": { - "PageNumber": 19, - "Coordinates": { - "Left": 28, - "Top": 684.49994 - } - } - } - ] - }, - { - "Number": 20, - "Text": "20 / 127ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", - "Links": [ - { - "Goto": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 22, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 21, - "Text": "21 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 22, - "Text": "22 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 23, - "Text": "23 / 127ClassesCSharpNamespace BuildFromCSharpSourceCode", - "Links": [ - { - "Goto": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 24, - "Text": "24 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 23, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 23, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 23, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 23, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 23, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 25, - "Text": "25 / 127NamespacesBuildFromProject.Issue8540ClassesClass1Class1.Issue8665Class1.Issue8696AttributeClass1.Issue8948Class1.TestDogClass representing a dog.InheritdocInheritdoc.Issue6366Inheritdoc.Issue6366.Class1Inheritdoc.Issue6366.Class2Inheritdoc.Issue7035Inheritdoc.Issue7484This is a test class to have something for DocFX to document.Inheritdoc.Issue8101Issue8725A nice classStructsInheritdoc.Issue8129InterfacesClass1.IIssue8948IInheritdocNamespace BuildFromProject", - "Links": [ - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 60, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 60, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 26, - "Text": "26 / 127EnumsClass1.Issue9260", - "Links": [ - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 27, - "Text": "27 / 127NamespacesBuildFromProject.Issue8540.ABuildFromProject.Issue8540.BNamespace BuildFromProject.Issue8540", - "Links": [ - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 28, - "Text": "28 / 127ClassesANamespace BuildFromProject.Issue8540.A", - "Links": [ - { - "Goto": { - "PageNumber": 29, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 29, - "Text": "29 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 30, - "Text": "30 / 127ClassesBNamespace BuildFromProject.Issue8540.B", - "Links": [ - { - "Goto": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 31, - "Text": "31 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 32, - "Text": "32 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 33, - "Text": "33 / 127ExamplesRemarksFor 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 / 127Inline .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/" - }, - { - "Uri": "https://www.github.com/" - }, - { - "Uri": "https://www.github.com/" - } - ] - }, - { - "Number": 35, - "Text": "35 / 127Remarks@\"\\\\?\\\" @\"\\\\?\\\"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 / 127TestSee 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.double" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.double" - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 37, - "Text": "37 / 127Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsDoes nothing with generic type T.Type ParametersTA generic type.Interface Class1.IIssue8948public interface Class1.IIssue8948DoNothing()void DoNothing()", - "Links": [ - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 38, - "Text": "38 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 39, - "Text": "39 / 127Parametersfoo 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" - }, - { - "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.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "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.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.char" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 40, - "Text": "40 / 127Property Valueint\uF1C5Foopublic int Foo { get; }", - "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" - } - ] - }, - { - "Number": 41, - "Text": "41 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.match" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 42, - "Text": "42 / 127Attribute.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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.attribute.typeid" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.type" - } - ] - }, - { - "Number": 43, - "Text": "43 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 44, - "Text": "44 / 127Namespace: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": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 45, - "Text": "45 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 46, - "Text": "46 / 127Namespace:BuildFromProjectAssembly:BuildFromProject.dllClass representing a dog.Inheritanceobject\uF1C5 DogInherited 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()\uF1C5ConstructorsConstructor.Parametersname string\uF1C5Name of the dog.age int\uF1C5Age of the dog.PropertiesClass Dogpublic class Dog\uF12CDog(string, int)public Dog(string name, int age)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 47, - "Text": "47 / 127Age of the dog.Property Valueint\uF1C5Name of the dog.Property Valuestring\uF1C5Agepublic int Age { get; }Namepublic string Name { get; }", - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 48, - "Text": "48 / 127Namespace:BuildFromProjectAssembly:BuildFromProject.dllMethodsThis method should do something...Interface IInheritdocpublic interface IInheritdocIssue7629()void Issue7629()", - "Links": [ - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 49, - "Text": "49 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.idisposable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 50, - "Text": "50 / 127This method should do something...public void Issue7629()", - "Links": [] - }, - { - "Number": 51, - "Text": "51 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 52, - "Text": "52 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 53, - "Text": "53 / 127ReturnsTThis text inherited.", - "Links": [] - }, - { - "Number": 54, - "Text": "54 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 55, - "Text": "55 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 56, - "Text": "56 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Coordinates": { - "Left": 28, - "Top": 554.75 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Coordinates": { - "Left": 28, - "Top": 554.75 - } - } - }, - { - "Goto": { - "PageNumber": 57, - "Coordinates": { - "Left": 28, - "Top": 554.75 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Coordinates": { - "Left": 28, - "Top": 61.249939 - } - } - }, - { - "Goto": { - "PageNumber": 56, - "Coordinates": { - "Left": 28, - "Top": 61.249939 - } - } - } - ] - }, - { - "Number": 57, - "Text": "57 / 127A 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)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - } - ] - }, - { - "Number": 58, - "Text": "58 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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" - }, - { - "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.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "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": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 59, - "Text": "59 / 127A 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.action-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.single" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - } - ] - }, - { - "Number": 60, - "Text": "60 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 61, - "Text": "61 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 62, - "Text": "62 / 127ClassesBaseClass1This is the BaseClassClass1This is summary from vb class...Namespace BuildFromVBSourceCode", - "Links": [ - { - "Goto": { - "PageNumber": 63, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 63, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 63, - "Text": "63 / 127Namespace: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)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 64, - "Text": "64 / 127Namespace: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; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.finalize" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 63, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 63, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 65, - "Text": "65 / 127Class1MethodsThis 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)", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.datetime" - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 66, - "Text": "66 / 127NamespacesCatLibrary.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": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 87, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 97, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 89, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 92, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 88, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 67, - "Text": "67 / 127MRefDelegateGeneric delegate with many constrains.MRefNormalDelegateDelegate in the namespace", - "Links": [ - { - "Goto": { - "PageNumber": 95, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 96, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 96, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 96, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 68, - "Text": "68 / 127ClassesContainersRefType.ContainersRefTypeChildExplicitLayoutClassIssue231StructsContainersRefTypeStruct ContainersRefTypeInterfacesContainersRefType.ContainersRefTypeChildInterfaceEnumsContainersRefType.ColorTypeEnumeration ColorTypeDelegatesContainersRefType.ContainersRefTypeDelegateDelegate ContainersRefTypeDelegateNamespace CatLibrary.Core", - "Links": [ - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 69, - "Text": "69 / 127Namespace: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; }", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.equals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.valuetype.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 410.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 410.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 410.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 410.75 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 235.24994 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 235.24994 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 235.24994 - } - } - }, - { - "Goto": { - "PageNumber": 76, - "Coordinates": { - "Left": 28, - "Top": 235.24994 - } - } - } - ] - }, - { - "Number": 70, - "Text": "70 / 127Property Valuelong\uF1C5MethodsContainersRefTypeNonRefMethodarrayParametersparmsArray object\uF1C5[]Returnsint\uF1C5EventsEvent TypeEventHandler\uF1C5ContainersRefTypeNonRefMethod(params object[])public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)ContainersRefTypeEventHandlerpublic event EventHandler ContainersRefTypeEventHandler", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "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.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - } - ] - }, - { - "Number": 71, - "Text": "71 / 127Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllEnumeration ColorTypeFieldsRed = 0redBlue = 1blueYellow = 2yellowEnum ContainersRefType.ColorTypepublic enum ContainersRefType.ColorType", - "Links": [ - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 72, - "Text": "72 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 73, - "Text": "73 / 127Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllInterfaceContainersRefType.ContainersRefTypeChildInterfacepublic interface ContainersRefType.ContainersRefTypeChildInterface", - "Links": [ - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 74, - "Text": "74 / 127Namespace:CatLibrary.CoreAssembly:CatLibrary.Core.dllDelegate ContainersRefTypeDelegateDelegateContainersRefType.ContainersRefTypeDelegatepublic delegate void ContainersRefType.ContainersRefTypeDelegate()", - "Links": [ - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 75, - "Text": "75 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 76, - "Text": "76 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 77, - "Text": "77 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.data" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.helplink" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.hresult" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.innerexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.message" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.source" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.stacktrace" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.targetsite" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 78, - "Text": "78 / 127Namespace: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" - }, - { - "Uri": "https://en.wikipedia.org/wiki/Cat" - }, - { - "Uri": "https://en.wikipedia.org/wiki/Cat" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 89, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 92, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 89, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 79, - "Text": "79 / 127object.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)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 94, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 94, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 94, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 94, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - } - ] - }, - { - "Number": 80, - "Text": "80 / 127nickName 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - } - ] - }, - { - "Number": 81, - "Text": "81 / 127bool\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", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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" - } - ] - }, - { - "Number": 82, - "Text": "82 / 127Property 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "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.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - } - ] - }, - { - "Number": 83, - "Text": "83 / 127Override 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "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.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - } - ] - }, - { - "Number": 84, - "Text": "84 / 127This 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.boolean" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - } - ] - }, - { - "Number": 85, - "Text": "85 / 127Addition 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" - }, - { - "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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int32" - }, - { - "Goto": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 97, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 86, - "Text": "86 / 127Similar with operaotr +, refer to that topic.Parameterslsr Catrsr int\uF1C5Returnsint\uF1C5operator -(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" - }, - { - "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": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 87, - "Text": "87 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 88, - "Text": "88 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "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": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 89, - "Text": "89 / 127Namespace: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" - }, - { - "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.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 90, - "Text": "90 / 127Property 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", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - } - ] - }, - { - "Number": 91, - "Text": "91 / 127Tool name.Type ParametersToolIt's a class type.", - "Links": [] - }, - { - "Number": 92, - "Text": "92 / 127Namespace: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", - "Links": [ - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.eventhandler" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 89, - "Coordinates": { - "Left": 28, - "Top": 90.499939 - } - } - }, - { - "Goto": { - "PageNumber": 89, - "Coordinates": { - "Left": 28, - "Top": 90.499939 - } - } - }, - { - "Goto": { - "PageNumber": 89, - "Coordinates": { - "Left": 28, - "Top": 425.75 - } - } - }, - { - "Goto": { - "PageNumber": 89, - "Coordinates": { - "Left": 28, - "Top": 425.75 - } - } - }, - { - "Goto": { - "PageNumber": 90, - "Coordinates": { - "Left": 28, - "Top": 584.75 - } - } - }, - { - "Goto": { - "PageNumber": 90, - "Coordinates": { - "Left": 28, - "Top": 584.75 - } - } - }, - { - "Goto": { - "PageNumber": 90, - "Coordinates": { - "Left": 28, - "Top": 214.24994 - } - } - }, - { - "Goto": { - "PageNumber": 90, - "Coordinates": { - "Left": 28, - "Top": 449.74994 - } - } - }, - { - "Goto": { - "PageNumber": 90, - "Coordinates": { - "Left": 28, - "Top": 449.74994 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 93, - "Coordinates": { - "Left": 28, - "Top": 320.75 - } - } - }, - { - "Goto": { - "PageNumber": 94, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 94, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 94, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - }, - { - "Goto": { - "PageNumber": 94, - "Coordinates": { - "Left": 28, - "Top": 764 - } - } - } - ] - }, - { - "Number": 93, - "Text": "93 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 92, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 94, - "Text": "94 / 127Extension 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.int64" - }, - { - "Goto": { - "PageNumber": 92, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 95, - "Text": "95 / 127Namespace: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": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 96, - "Text": "96 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 97, - "Text": "97 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.tuple-2" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 87, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 97, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 98, - "Text": "98 / 127ReturnsComplexComplex 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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.string" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.notimplementedexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.argumentexception" - }, - { - "Goto": { - "PageNumber": 87, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 99, - "Text": "99 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gethashcode" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.gettype" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.referenceequals" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object.tostring" - }, - { - "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": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 97, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 97, - "Coordinates": { - "Left": 28, - "Top": 332.75 - } - } - } - ] - }, - { - "Number": 100, - "Text": "100 / 127EnumsColorTypeEnumeration ColorTypeNamespace MRef.Demo.Enumeration", - "Links": [ - { - "Goto": { - "PageNumber": 101, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 101, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 101, - "Text": "101 / 127Namespace: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" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "https://learn.microsoft.com/dotnet/api/system.object" - }, - { - "Uri": "" - }, - { - "Uri": "" - }, - { - "Goto": { - "PageNumber": 100, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 102, - "Text": "102 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 114, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 103, - "Text": "103 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 114, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - }, - { - "Goto": { - "PageNumber": 114, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 104, - "Text": "104 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 114, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 105, - "Text": "105 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 114, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 106, - "Text": "106 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 115, - "Coordinates": { - "Left": 28, - "Top": 525.49969 - } - } - }, - { - "Goto": { - "PageNumber": 115, - "Coordinates": { - "Left": 28, - "Top": 525.49969 - } - } - } - ] - }, - { - "Number": 107, - "Text": "107 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 114, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 108, - "Text": "108 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 115, - "Coordinates": { - "Left": 28, - "Top": 361.24969 - } - } - }, - { - "Goto": { - "PageNumber": 115, - "Coordinates": { - "Left": 28, - "Top": 361.24969 - } - } - } - ] - }, - { - "Number": 109, - "Text": "109 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 115, - "Coordinates": { - "Left": 28, - "Top": 361.24969 - } - } - } - ] - }, - { - "Number": 110, - "Text": "110 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 115, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - }, - { - "Goto": { - "PageNumber": 115, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - } - ] - }, - { - "Number": 111, - "Text": "111 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 115, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - } - ] - }, - { - "Number": 112, - "Text": "112 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - } - ] - }, - { - "Number": 113, - "Text": "113 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 115, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - } - ] - }, - { - "Number": 114, - "Text": "114 / 127ParametersNameTypeDefaultNotes*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": 115, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - }, - { - "Goto": { - "PageNumber": 114, - "Coordinates": { - "Left": 28, - "Top": 109.999695 - } - } - }, - { - "Goto": { - "PageNumber": 115, - "Coordinates": { - "Left": 28, - "Top": 658.99969 - } - } - } - ] - }, - { - "Number": 115, - "Text": "115 / 127NameTypeNotesidinteger (int64)namestringTagNameTypeNotesidinteger (int64)namestringApiResponseNameTypeNotescodeinteger (int32)messagestringtypestringOrderNameTypeNotescompletebooleanidinteger (int64)petIdinteger (int64)quantityinteger (int32)shipDatestring (date-time)statusstringOrder StatusUser", - "Links": [] - }, - { - "Number": 116, - "Text": "116 / 127NameTypeNotesemailstringfirstNamestringidinteger (int64)lastNamestringpasswordstringphonestringuserStatusinteger (int32)User StatususernamestringSee AlsosSee other REST APIs:Contacts API", - "Links": [ - { - "Goto": { - "PageNumber": 117, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 117, - "Text": "117 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 118, - "Text": "118 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 119, - "Text": "119 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Goto": { - "PageNumber": 125, - "Coordinates": { - "Left": 28, - "Top": 296.75015 - } - } - } - ] - }, - { - "Number": 120, - "Text": "120 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 121, - "Text": "121 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 122, - "Text": "122 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 123, - "Text": "123 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 124, - "Text": "124 / 127| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 125, - "Text": "125 / 127NameTypeDefaultNotes*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": 126, - "Text": "126 / 127NameTypeNotesdirSyncEnabledbooleandisplayNamestringfacsimileTelephoneNumberstringgivenNamestringjobTitlestringlastDirSyncTimestring (date-time)mailstringmailNicknamestringmobilestringphysicalDeliveryOfficeNamestringpostalCodestringprovisioningErrorsProvisioningError[]proxyAddressesarraysipProxyAddressstringstatestringstreetAddressstringsurnamestringtelephoneNumberstringthumbnailPhotostringProvisioningErrorNameTypeNoteserrorDetailstring", - "Links": [ - { - "Goto": { - "PageNumber": 126, - "Coordinates": { - "Left": 28, - "Top": 136.250183 - } - } - }, - { - "Goto": { - "PageNumber": 126, - "Coordinates": { - "Left": 28, - "Top": 136.250183 - } - } - } - ] - }, - { - "Number": 127, - "Text": "127 / 127NameTypeNotesresolvedbooleanserviceInstancestringtimestampstring (date-time)", - "Links": [] - } - ], - "Bookmarks": [ - { - "Title": "Articles", - "Children": [ - { - "Title": "Getting Started with docfx", - "Children": [], - "Destination": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Engineering Docs", - "Children": [ - { - "Title": "Section 1", - "Children": [], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Engineering Guidelines", - "Children": [], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "C# Coding Standards", - "Children": [], - "Destination": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Markdown", - "Children": [], - "Destination": { - "PageNumber": 15, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Microsoft Docs", - "Children": [], - "Uri": "https://docs.microsoft.com/en-us/" - } - ], - "Destination": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "API Documentation", - "Children": [ - { - "Title": "BuildFromAssembly", - "Children": [ - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 21, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue5432", - "Children": [], - "Destination": { - "PageNumber": 22, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromCSharpSourceCode", - "Children": [ - { - "Title": "CSharp", - "Children": [], - "Destination": { - "PageNumber": 24, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 23, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromProject", - "Children": [ - { - "Title": "Issue8540", - "Children": [ - { - "Title": "A", - "Children": [ - { - "Title": "A", - "Children": [], - "Destination": { - "PageNumber": 29, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 28, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "B", - "Children": [ - { - "Title": "B", - "Children": [], - "Destination": { - "PageNumber": 31, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 30, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 27, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 32, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.IIssue8948", - "Children": [], - "Destination": { - "PageNumber": 37, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8665", - "Children": [], - "Destination": { - "PageNumber": 38, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8696Attribute", - "Children": [], - "Destination": { - "PageNumber": 41, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue8948", - "Children": [], - "Destination": { - "PageNumber": 43, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Issue9260", - "Children": [], - "Destination": { - "PageNumber": 44, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1.Test", - "Children": [], - "Destination": { - "PageNumber": 45, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Dog", - "Children": [], - "Destination": { - "PageNumber": 46, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "IInheritdoc", - "Children": [], - "Destination": { - "PageNumber": 48, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc", - "Children": [], - "Destination": { - "PageNumber": 49, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366", - "Children": [], - "Destination": { - "PageNumber": 51, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366.Class1", - "Children": [], - "Destination": { - "PageNumber": 52, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue6366.Class2", - "Children": [], - "Destination": { - "PageNumber": 54, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue7035", - "Children": [], - "Destination": { - "PageNumber": 55, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue7484", - "Children": [], - "Destination": { - "PageNumber": 56, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue8101", - "Children": [], - "Destination": { - "PageNumber": 58, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Inheritdoc.Issue8129", - "Children": [], - "Destination": { - "PageNumber": 60, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue8725", - "Children": [], - "Destination": { - "PageNumber": 61, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 25, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "BuildFromVBSourceCode", - "Children": [ - { - "Title": "BaseClass1", - "Children": [], - "Destination": { - "PageNumber": 63, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Class1", - "Children": [], - "Destination": { - "PageNumber": 64, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 62, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "CatLibrary", - "Children": [ - { - "Title": "Core", - "Children": [ - { - "Title": "ContainersRefType", - "Children": [], - "Destination": { - "PageNumber": 69, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ColorType", - "Children": [], - "Destination": { - "PageNumber": 71, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeChild", - "Children": [], - "Destination": { - "PageNumber": 72, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeChildInterface", - "Children": [], - "Destination": { - "PageNumber": 73, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ContainersRefType.ContainersRefTypeDelegate", - "Children": [], - "Destination": { - "PageNumber": 74, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ExplicitLayoutClass", - "Children": [], - "Destination": { - "PageNumber": 75, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Issue231", - "Children": [], - "Destination": { - "PageNumber": 76, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 68, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "CatException", - "Children": [], - "Destination": { - "PageNumber": 77, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Cat", - "Children": [], - "Destination": { - "PageNumber": 78, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Complex", - "Children": [], - "Destination": { - "PageNumber": 87, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "FakeDelegate", - "Children": [], - "Destination": { - "PageNumber": 88, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "IAnimal", - "Children": [], - "Destination": { - "PageNumber": 89, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ICat", - "Children": [], - "Destination": { - "PageNumber": 92, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "ICatExtension", - "Children": [], - "Destination": { - "PageNumber": 93, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRefDelegate", - "Children": [], - "Destination": { - "PageNumber": 95, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRefNormalDelegate", - "Children": [], - "Destination": { - "PageNumber": 96, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Tom", - "Children": [], - "Destination": { - "PageNumber": 97, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "TomFromBaseClass", - "Children": [], - "Destination": { - "PageNumber": 99, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 66, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "MRef.Demo.Enumeration", - "Children": [ - { - "Title": "ColorType", - "Children": [], - "Destination": { - "PageNumber": 101, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 100, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 20, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "REST API", - "Children": [ - { - "Title": "Pet Store API", - "Children": [], - "Destination": { - "PageNumber": 102, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Contacts API", - "Children": [], - "Destination": { - "PageNumber": 117, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 102, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.verified.json deleted file mode 100644 index 77192e9bbea..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/pdf/toc.verified.json +++ /dev/null @@ -1,413 +0,0 @@ -{ - "order": 200, - "items": [ - { - "name": "Articles", - "includedFrom": "~/articles/toc.yml", - "items": [ - { - "name": "Getting Started with docfx", - "href": "../articles/docfx_getting_started.html", - "topicHref": "../articles/docfx_getting_started.html" - }, - { - "name": "Engineering Docs", - "items": [ - { - "name": "Section 1" - }, - { - "name": "Engineering Guidelines", - "href": "../articles/engineering_guidelines.html", - "topicHref": "../articles/engineering_guidelines.html" - }, - { - "name": "C# Coding Standards", - "href": "../articles/csharp_coding_standards.html", - "topicHref": "../articles/csharp_coding_standards.html" - } - ], - "expanded": true - }, - { - "name": "Markdown", - "href": "../articles/markdown.html", - "topicHref": "../articles/markdown.html" - }, - { - "name": "Microsoft Docs", - "href": "https://docs.microsoft.com/en-us/", - "topicHref": "https://docs.microsoft.com/en-us/" - } - ] - }, - { - "name": "API Documentation", - "includedFrom": "~/obj/api/toc.yml", - "items": [ - { - "name": "BuildFromAssembly", - "href": "../api/BuildFromAssembly.html", - "topicHref": "../api/BuildFromAssembly.html", - "topicUid": "BuildFromAssembly", - "items": [ - { - "name": "Class1", - "href": "../api/BuildFromAssembly.Class1.html", - "topicHref": "../api/BuildFromAssembly.Class1.html", - "topicUid": "BuildFromAssembly.Class1" - }, - { - "name": "Issue5432", - "href": "../api/BuildFromAssembly.Issue5432.html", - "topicHref": "../api/BuildFromAssembly.Issue5432.html", - "topicUid": "BuildFromAssembly.Issue5432" - } - ] - }, - { - "name": "BuildFromCSharpSourceCode", - "href": "../api/BuildFromCSharpSourceCode.html", - "topicHref": "../api/BuildFromCSharpSourceCode.html", - "topicUid": "BuildFromCSharpSourceCode", - "items": [ - { - "name": "CSharp", - "href": "../api/BuildFromCSharpSourceCode.CSharp.html", - "topicHref": "../api/BuildFromCSharpSourceCode.CSharp.html", - "topicUid": "BuildFromCSharpSourceCode.CSharp" - } - ] - }, - { - "name": "BuildFromProject", - "href": "../api/BuildFromProject.html", - "topicHref": "../api/BuildFromProject.html", - "topicUid": "BuildFromProject", - "items": [ - { - "name": "Issue8540", - "href": "../api/BuildFromProject.Issue8540.html", - "topicHref": "../api/BuildFromProject.Issue8540.html", - "topicUid": "BuildFromProject.Issue8540", - "items": [ - { - "name": "A", - "href": "../api/BuildFromProject.Issue8540.A.html", - "topicHref": "../api/BuildFromProject.Issue8540.A.html", - "topicUid": "BuildFromProject.Issue8540.A", - "items": [ - { - "name": "A", - "href": "../api/BuildFromProject.Issue8540.A.A.html", - "topicHref": "../api/BuildFromProject.Issue8540.A.A.html", - "topicUid": "BuildFromProject.Issue8540.A.A" - } - ] - }, - { - "name": "B", - "href": "../api/BuildFromProject.Issue8540.B.html", - "topicHref": "../api/BuildFromProject.Issue8540.B.html", - "topicUid": "BuildFromProject.Issue8540.B", - "items": [ - { - "name": "B", - "href": "../api/BuildFromProject.Issue8540.B.B.html", - "topicHref": "../api/BuildFromProject.Issue8540.B.B.html", - "topicUid": "BuildFromProject.Issue8540.B.B" - } - ] - } - ] - }, - { - "name": "Class1", - "href": "../api/BuildFromProject.Class1.html", - "topicHref": "../api/BuildFromProject.Class1.html", - "topicUid": "BuildFromProject.Class1" - }, - { - "name": "Class1.IIssue8948", - "href": "../api/BuildFromProject.Class1.IIssue8948.html", - "topicHref": "../api/BuildFromProject.Class1.IIssue8948.html", - "topicUid": "BuildFromProject.Class1.IIssue8948" - }, - { - "name": "Class1.Issue8665", - "href": "../api/BuildFromProject.Class1.Issue8665.html", - "topicHref": "../api/BuildFromProject.Class1.Issue8665.html", - "topicUid": "BuildFromProject.Class1.Issue8665" - }, - { - "name": "Class1.Issue8696Attribute", - "href": "../api/BuildFromProject.Class1.Issue8696Attribute.html", - "topicHref": "../api/BuildFromProject.Class1.Issue8696Attribute.html", - "topicUid": "BuildFromProject.Class1.Issue8696Attribute" - }, - { - "name": "Class1.Issue8948", - "href": "../api/BuildFromProject.Class1.Issue8948.html", - "topicHref": "../api/BuildFromProject.Class1.Issue8948.html", - "topicUid": "BuildFromProject.Class1.Issue8948" - }, - { - "name": "Class1.Issue9260", - "href": "../api/BuildFromProject.Class1.Issue9260.html", - "topicHref": "../api/BuildFromProject.Class1.Issue9260.html", - "topicUid": "BuildFromProject.Class1.Issue9260" - }, - { - "name": "Class1.Test", - "href": "../api/BuildFromProject.Class1.Test-1.html", - "topicHref": "../api/BuildFromProject.Class1.Test-1.html", - "topicUid": "BuildFromProject.Class1.Test`1" - }, - { - "name": "Dog", - "href": "../api/BuildFromProject.Dog.html", - "topicHref": "../api/BuildFromProject.Dog.html", - "topicUid": "BuildFromProject.Dog" - }, - { - "name": "IInheritdoc", - "href": "../api/BuildFromProject.IInheritdoc.html", - "topicHref": "../api/BuildFromProject.IInheritdoc.html", - "topicUid": "BuildFromProject.IInheritdoc" - }, - { - "name": "Inheritdoc", - "href": "../api/BuildFromProject.Inheritdoc.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.html", - "topicUid": "BuildFromProject.Inheritdoc" - }, - { - "name": "Inheritdoc.Issue6366", - "href": "../api/BuildFromProject.Inheritdoc.Issue6366.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue6366.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366" - }, - { - "name": "Inheritdoc.Issue6366.Class1", - "href": "../api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366.Class1`1" - }, - { - "name": "Inheritdoc.Issue6366.Class2", - "href": "../api/BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue6366.Class2.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue6366.Class2" - }, - { - "name": "Inheritdoc.Issue7035", - "href": "../api/BuildFromProject.Inheritdoc.Issue7035.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue7035.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue7035" - }, - { - "name": "Inheritdoc.Issue7484", - "href": "../api/BuildFromProject.Inheritdoc.Issue7484.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue7484.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue7484" - }, - { - "name": "Inheritdoc.Issue8101", - "href": "../api/BuildFromProject.Inheritdoc.Issue8101.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue8101.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue8101" - }, - { - "name": "Inheritdoc.Issue8129", - "href": "../api/BuildFromProject.Inheritdoc.Issue8129.html", - "topicHref": "../api/BuildFromProject.Inheritdoc.Issue8129.html", - "topicUid": "BuildFromProject.Inheritdoc.Issue8129" - }, - { - "name": "Issue8725", - "href": "../api/BuildFromProject.Issue8725.html", - "topicHref": "../api/BuildFromProject.Issue8725.html", - "topicUid": "BuildFromProject.Issue8725" - } - ] - }, - { - "name": "BuildFromVBSourceCode", - "href": "../api/BuildFromVBSourceCode.html", - "topicHref": "../api/BuildFromVBSourceCode.html", - "topicUid": "BuildFromVBSourceCode", - "items": [ - { - "name": "BaseClass1", - "href": "../api/BuildFromVBSourceCode.BaseClass1.html", - "topicHref": "../api/BuildFromVBSourceCode.BaseClass1.html", - "topicUid": "BuildFromVBSourceCode.BaseClass1" - }, - { - "name": "Class1", - "href": "../api/BuildFromVBSourceCode.Class1.html", - "topicHref": "../api/BuildFromVBSourceCode.Class1.html", - "topicUid": "BuildFromVBSourceCode.Class1" - } - ] - }, - { - "name": "CatLibrary", - "href": "../api/CatLibrary.html", - "topicHref": "../api/CatLibrary.html", - "topicUid": "CatLibrary", - "items": [ - { - "name": "Core", - "href": "../api/CatLibrary.Core.html", - "topicHref": "../api/CatLibrary.Core.html", - "topicUid": "CatLibrary.Core", - "items": [ - { - "name": "ContainersRefType", - "href": "../api/CatLibrary.Core.ContainersRefType.html", - "topicHref": "../api/CatLibrary.Core.ContainersRefType.html", - "topicUid": "CatLibrary.Core.ContainersRefType" - }, - { - "name": "ContainersRefType.ColorType", - "href": "../api/CatLibrary.Core.ContainersRefType.ColorType.html", - "topicHref": "../api/CatLibrary.Core.ContainersRefType.ColorType.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ColorType" - }, - { - "name": "ContainersRefType.ContainersRefTypeChild", - "href": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicHref": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChild" - }, - { - "name": "ContainersRefType.ContainersRefTypeChildInterface", - "href": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicHref": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface" - }, - { - "name": "ContainersRefType.ContainersRefTypeDelegate", - "href": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicHref": "../api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html", - "topicUid": "CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate" - }, - { - "name": "ExplicitLayoutClass", - "href": "../api/CatLibrary.Core.ExplicitLayoutClass.html", - "topicHref": "../api/CatLibrary.Core.ExplicitLayoutClass.html", - "topicUid": "CatLibrary.Core.ExplicitLayoutClass" - }, - { - "name": "Issue231", - "href": "../api/CatLibrary.Core.Issue231.html", - "topicHref": "../api/CatLibrary.Core.Issue231.html", - "topicUid": "CatLibrary.Core.Issue231" - } - ] - }, - { - "name": "CatException", - "href": "../api/CatLibrary.CatException-1.html", - "topicHref": "../api/CatLibrary.CatException-1.html", - "topicUid": "CatLibrary.CatException`1" - }, - { - "name": "Cat", - "href": "../api/CatLibrary.Cat-2.html", - "topicHref": "../api/CatLibrary.Cat-2.html", - "topicUid": "CatLibrary.Cat`2" - }, - { - "name": "Complex", - "href": "../api/CatLibrary.Complex-2.html", - "topicHref": "../api/CatLibrary.Complex-2.html", - "topicUid": "CatLibrary.Complex`2" - }, - { - "name": "FakeDelegate", - "href": "../api/CatLibrary.FakeDelegate-1.html", - "topicHref": "../api/CatLibrary.FakeDelegate-1.html", - "topicUid": "CatLibrary.FakeDelegate`1" - }, - { - "name": "IAnimal", - "href": "../api/CatLibrary.IAnimal.html", - "topicHref": "../api/CatLibrary.IAnimal.html", - "topicUid": "CatLibrary.IAnimal" - }, - { - "name": "ICat", - "href": "../api/CatLibrary.ICat.html", - "topicHref": "../api/CatLibrary.ICat.html", - "topicUid": "CatLibrary.ICat" - }, - { - "name": "ICatExtension", - "href": "../api/CatLibrary.ICatExtension.html", - "topicHref": "../api/CatLibrary.ICatExtension.html", - "topicUid": "CatLibrary.ICatExtension" - }, - { - "name": "MRefDelegate", - "href": "../api/CatLibrary.MRefDelegate-3.html", - "topicHref": "../api/CatLibrary.MRefDelegate-3.html", - "topicUid": "CatLibrary.MRefDelegate`3" - }, - { - "name": "MRefNormalDelegate", - "href": "../api/CatLibrary.MRefNormalDelegate.html", - "topicHref": "../api/CatLibrary.MRefNormalDelegate.html", - "topicUid": "CatLibrary.MRefNormalDelegate" - }, - { - "name": "Tom", - "href": "../api/CatLibrary.Tom.html", - "topicHref": "../api/CatLibrary.Tom.html", - "topicUid": "CatLibrary.Tom" - }, - { - "name": "TomFromBaseClass", - "href": "../api/CatLibrary.TomFromBaseClass.html", - "topicHref": "../api/CatLibrary.TomFromBaseClass.html", - "topicUid": "CatLibrary.TomFromBaseClass" - } - ] - }, - { - "name": "MRef.Demo.Enumeration", - "href": "../api/MRef.Demo.Enumeration.html", - "topicHref": "../api/MRef.Demo.Enumeration.html", - "topicUid": "MRef.Demo.Enumeration", - "items": [ - { - "name": "ColorType", - "href": "../api/MRef.Demo.Enumeration.ColorType.html", - "topicHref": "../api/MRef.Demo.Enumeration.ColorType.html", - "topicUid": "MRef.Demo.Enumeration.ColorType" - } - ] - } - ] - }, - { - "name": "REST API", - "includedFrom": "~/restapi/toc.md", - "items": [ - { - "name": "Pet Store API", - "href": "../restapi/petstore.html", - "topicHref": "../restapi/petstore.html" - }, - { - "name": "Contacts API", - "href": "../restapi/contacts.html", - "topicHref": "../restapi/contacts.html" - } - ] - } - ], - "pdf": true, - "pdfTocPage": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/contacts.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/contacts.html.view.verified.json deleted file mode 100644 index 53a2b849b94..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/contacts.html.view.verified.json +++ /dev/null @@ -1,1141 +0,0 @@ -{ - "_raw": "{\r\n \"swagger\": \"2.0\",\r\n \"info\": {\r\n \"title\": \"Contacts\",\r\n \"version\": \"1.6\"\r\n },\r\n \"paths\": {\r\n \"/contacts\": {\r\n \"get\": {\r\n \"parameters\": [\r\n {\r\n \"in\": \"query\",\r\n \"description\": \"The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.\",\r\n \"name\": \"api-version\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"enum\": [\r\n \"1.5\",\r\n \"1.6\"\r\n ],\r\n \"default\": \"1.6\"\r\n }\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"OK. Indicates success. The results are returned in the response body.\",\r\n \"examples\": {\r\n \"application/json\": {\r\n \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/Microsoft.DirectoryServices.Contact\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\r\n \"objectType\": \"Contact\",\r\n \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\",\r\n \"deletionTimestamp\": null,\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Marcus Breyer\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Marcus\",\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"Marcus@contoso.com\",\r\n \"mailNickname\": \"MarcusBreyer\",\r\n \"mobile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:Marcus@contoso.com\"\r\n ],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Breyer\",\r\n \"telephoneNumber\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\r\n \"objectType\": \"Contact\",\r\n \"objectId\": \"35110b16-360c-4c4a-93b2-03f065fabd93\",\r\n \"deletionTimestamp\": null,\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Yossi Ran\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yossi\",\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"Yossi@contoso.com\",\r\n \"mailNickname\": \"YossiRan\",\r\n \"mobile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:Yossi@contoso.com\"\r\n ],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Ran\",\r\n \"telephoneNumber\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\r\n \"objectType\": \"Contact\",\r\n \"objectId\": \"7163f3b8-70c9-43d2-b9e1-4467ddaf087a\",\r\n \"deletionTimestamp\": null,\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Jeremy Nelson\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Jeremy\",\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"Jeremy@contoso.com\",\r\n \"mailNickname\": \"JeremyNelson\",\r\n \"mobile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:Jeremy@contoso.com\"\r\n ],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Nelson\",\r\n \"telephoneNumber\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\r\n \"objectType\": \"Contact\",\r\n \"objectId\": \"83234b5c-3a10-4108-8f36-39b1addadfdb\",\r\n \"deletionTimestamp\": null,\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"David Strome\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"David\",\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"David@contoso.com\",\r\n \"mailNickname\": \"DavidStrome\",\r\n \"mobile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:David@contoso.com\"\r\n ],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Strome\",\r\n \"telephoneNumber\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\r\n \"objectType\": \"Contact\",\r\n \"objectId\": \"8c1315ce-bf6f-4e26-b24f-c830606ef41c\",\r\n \"deletionTimestamp\": null,\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Holly Holt\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Holly\",\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"Holly@contoso.com\",\r\n \"mailNickname\": \"HollyHolt\",\r\n \"mobile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:Holly@contoso.com\"\r\n ],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Holt\",\r\n \"telephoneNumber\": null\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n },\r\n \"description\": \"

        Required scope: Contacts.Read or Contacts.Write

        \",\r\n \"summary\": \"You can get a collection of contacts from your tenant.\",\r\n \"operationId\": \"get contacts\"\r\n }\r\n },\r\n \"/contacts/{object_id}\": {\r\n \"get\": {\r\n \"parameters\": [\r\n {\r\n \"in\": \"path\",\r\n \"description\": \"The object ID (GUID) of the target contact.\",\r\n \"name\": \"object_id\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"default\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\"\r\n },\r\n {\r\n \"in\": \"query\",\r\n \"description\": \"Specifies the version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.\",\r\n \"name\": \"api-version\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"enum\": [\r\n \"1.5\",\r\n \"1.6\"\r\n ],\r\n \"default\": \"1.6\"\r\n }\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"OK. Indicates success. The contact is returned in the response body.\",\r\n \"examples\": {\r\n \"application/json\": {\r\n \"odata.metadata\": \"https://graph.windows.net/graphdir1.onmicrosoft.com/$metadata#directoryObjects/Microsoft.DirectoryServices.Contact/@Element\",\r\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\r\n \"objectType\": \"Contact\",\r\n \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\",\r\n \"deletionTimestamp\": null,\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Marcus Breyer\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Marcus\",\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"Marcus@contoso.com\",\r\n \"mailNickname\": \"MarcusBreyer\",\r\n \"mobile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:Marcus@contoso.com\"\r\n ],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Breyer\",\r\n \"telephoneNumber\": null\r\n }\r\n }\r\n }\r\n },\r\n \"description\": \"

        Required scope: Contacts.Read or Contacts.Write

        \",\r\n \"summary\": \"Get a contact by using the object ID.\",\r\n \"operationId\": \"get contact by id\"\r\n },\r\n \"patch\": {\r\n \"parameters\": [\r\n {\r\n \"in\": \"path\",\r\n \"description\": \"The object ID (GUID) of the target contact.\",\r\n \"name\": \"object_id\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"default\": \"7163f3b8-70c9-43d2-b9e1-4467ddaf087a\"\r\n },\r\n {\r\n \"in\": \"query\",\r\n \"description\": \"The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.\",\r\n \"name\": \"api-version\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"enum\": [\r\n \"1.5\",\r\n \"1.6\"\r\n ],\r\n \"default\": \"1.6\"\r\n },\r\n {\r\n \"in\": \"body\",\r\n \"description\": \"this is request body, not real parameter\",\r\n \"name\": \"bodyparam\",\r\n \"required\": false,\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/contact\",\r\n \"example\": {\r\n \"department\": \"Sales\",\r\n \"jobTitle\": \"Sales Rep\"\r\n }\r\n }\r\n }\r\n ],\r\n \"responses\": {\r\n \"204\": {\r\n \"description\": \"No Content. Indicates success. No response body is returned.\"\r\n }\r\n },\r\n \"description\": \"

        Required scope: Contacts.Write

        \",\r\n \"summary\": \"Change a contact's properties.\",\r\n \"operationId\": \"update contact\"\r\n },\r\n \"delete\": {\r\n \"parameters\": [\r\n {\r\n \"in\": \"path\",\r\n \"description\": \"The object ID (GUID) of the target contact.\",\r\n \"name\": \"object_id\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"default\": \"7163f3b8-70c9-43d2-b9e1-4467ddaf087a\"\r\n },\r\n {\r\n \"in\": \"query\",\r\n \"description\": \"Specifies the version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.\",\r\n \"name\": \"api-version\",\r\n \"required\": false,\r\n \"type\": \"string\",\r\n \"enum\": [\r\n \"1.5\",\r\n \"1.6\"\r\n ],\r\n \"default\": \"1.6\"\r\n }\r\n ],\r\n \"responses\": {\r\n \"204\": {\r\n \"description\": \"No Content. Indicates success.\"\r\n }\r\n },\r\n \"description\": \"

        Required scope: Contacts.Write

        \",\r\n \"summary\": \"Delete a contact.\",\r\n \"operationId\": \"delete contact\"\r\n }\r\n },\r\n \"/contacts/{object_id}/$links/manager\": {\r\n \"get\": {\r\n \"parameters\": [\r\n {\r\n \"in\": \"path\",\r\n \"description\": \"The object ID (GUID) of the target contact.\",\r\n \"name\": \"object_id\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"default\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\"\r\n },\r\n {\r\n \"in\": \"query\",\r\n \"description\": \"The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.\",\r\n \"name\": \"api-version\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"enum\": [\r\n \"1.5\",\r\n \"1.6\"\r\n ],\r\n \"default\": \"1.6\"\r\n }\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"OK. Indicates success. A link to the contact's manager is returned.\",\r\n \"examples\": {\r\n \"application/json\": {\r\n \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/$links/manager\",\r\n \"url\": \"https://graph.windows.net/myorganization/directoryObjects/35110b16-360c-4c4a-93b2-03f065fabd93/Microsoft.WindowsAzure.ActiveDirectory.Contact\"\r\n }\r\n }\r\n },\r\n \"404\": {\r\n \"description\": \"Not Found. The requested resource was not found. This can occur if the manager property is not currently set for the specified contact. It can also have other causes, for example, a bad domain. A code and associated message is returned with the error.\",\r\n \"examples\": {\r\n \"application/json\": {\r\n \"odata.error\": {\r\n \"code\": \"Request_ResourceNotFound\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Resource not found for the segment 'manager'.\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"description\": \"

        Required scope: Contacts.Read or Contacts.Write

        \",\r\n \"summary\": \"Get a link to the contact's manager.\",\r\n \"operationId\": \"get contact manager link\"\r\n },\r\n \"put\": {\r\n \"parameters\": [\r\n {\r\n \"in\": \"path\",\r\n \"description\": \"The object ID (GUID) of the target contact.\",\r\n \"name\": \"object_id\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"default\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\"\r\n },\r\n {\r\n \"in\": \"query\",\r\n \"description\": \"The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.\",\r\n \"name\": \"api-version\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"enum\": [\r\n \"1.5\",\r\n \"1.6\"\r\n ],\r\n \"default\": \"1.6\"\r\n },\r\n {\r\n \"in\": \"body\",\r\n \"description\": \"The request body contains a single property that specifies the URL of the user or contact to add as manager.\",\r\n \"name\": \"bodyparam\",\r\n \"required\": true,\r\n \"schema\": {\r\n \"required\": [\r\n \"url\"\r\n ],\r\n \"properties\": {\r\n \"url\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"example\": {\r\n \"url\": \"https://graph.windows.net/myorganization/directoryObjects/35110b16-360c-4c4a-93b2-03f065fabd93\"\r\n }\r\n }\r\n }\r\n ],\r\n \"responses\": {\r\n \"204\": {\r\n \"description\": \"No Content. Indicates success. No response body is returned.\"\r\n }\r\n },\r\n \"description\": \"

        Required scope: Contacts.Write

        \",\r\n \"summary\": \"Update the contact's manager\",\r\n \"operationId\": \"update contact manager\"\r\n },\r\n \"delete\": {\r\n \"parameters\": [\r\n {\r\n \"in\": \"path\",\r\n \"description\": \"The object ID (GUID) of the target contact.\",\r\n \"name\": \"object_id\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"default\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\"\r\n },\r\n {\r\n \"in\": \"query\",\r\n \"description\": \"The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.\",\r\n \"name\": \"api-version\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"enum\": [\r\n \"1.5\",\r\n \"1.6\"\r\n ],\r\n \"default\": \"1.6\"\r\n }\r\n ],\r\n \"responses\": {\r\n \"204\": {\r\n \"description\": \"No Content. Indicates success. N response body is returned.\"\r\n }\r\n },\r\n \"description\": \"

        Required scope: Contacts.Write

        \",\r\n \"summary\": \"Delete the contact's manager.\",\r\n \"operationId\": \"delete contact manager by id\"\r\n }\r\n },\r\n \"/contacts/{object_id}/$links/directReports\": {\r\n \"get\": {\r\n \"parameters\": [\r\n {\r\n \"in\": \"path\",\r\n \"description\": \"The object ID (GUID) of the target contact.\",\r\n \"name\": \"object_id\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"default\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\"\r\n },\r\n {\r\n \"in\": \"query\",\r\n \"description\": \"The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.\",\r\n \"name\": \"api-version\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"enum\": [\r\n \"1.5\",\r\n \"1.6\"\r\n ],\r\n \"default\": \"1.6\"\r\n }\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"OK. Indicates success. One or more direct reports are returned.\",\r\n \"examples\": {\r\n \"application/json\": {\r\n \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/$links/directReports\",\r\n \"value\": [\r\n {\r\n \"url\": \"https://graph.windows.net/myorganization/directoryObjects/8c1315ce-bf6f-4e26-b24f-c830606ef41c/Microsoft.DirectoryServices.Contact\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n },\r\n \"description\": \"

        Required scope: Contacts.Read or Contacts.Write

        \",\r\n \"summary\": \"Get a links to the contact's direct reports.\",\r\n \"operationId\": \"get contact direct reports links\"\r\n }\r\n },\r\n \"/contacts/{object_id}/$links/memberOf\": {\r\n \"get\": {\r\n \"parameters\": [\r\n {\r\n \"in\": \"path\",\r\n \"description\": \"The object ID (GUID) of the target contact.\",\r\n \"name\": \"object_id\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"default\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\"\r\n },\r\n {\r\n \"in\": \"query\",\r\n \"description\": \"The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.\",\r\n \"name\": \"api-version\",\r\n \"required\": true,\r\n \"type\": \"string\",\r\n \"enum\": [\r\n \"1.5\",\r\n \"1.6\"\r\n ],\r\n \"default\": \"1.6\"\r\n }\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"OK. Indicates success. One or more groups and/or directory roles are returned.\",\r\n \"examples\": {\r\n \"application/json\": {\r\n \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/$links/memberOf\",\r\n \"value\": [\r\n {\r\n \"url\": \"https://graph.windows.net/myorganization/directoryObjects/12345678-b942-47c9-a10e-a4bee353ce60/Microsoft.DirectoryServices.Group\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n },\r\n \"description\": \"

        Required scope: Contacts.Read or Contacts.Write

        \",\r\n \"summary\": \"Get a links to the contact's direct group and directory role memberships.\",\r\n \"operationId\": \"get contact memberOf links\"\r\n }\r\n }\r\n },\r\n \"host\": \"graph.windows.net\",\r\n \"basePath\": \"/myorganization\",\r\n \"schemes\": [\r\n \"https\"\r\n ],\r\n \"definitions\": {\r\n \"contact\": {\r\n \"properties\": {\r\n \"objectType\": {\r\n \"type\": \"string\",\r\n \"readOnly\": true\r\n },\r\n \"objectId\": {\r\n \"type\": \"string\",\r\n \"readOnly\": true\r\n },\r\n \"deletionTimestamp\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\",\r\n \"readOnly\": true\r\n },\r\n \"city\": {\r\n \"type\": \"string\"\r\n },\r\n \"country\": {\r\n \"type\": \"string\"\r\n },\r\n \"department\": {\r\n \"type\": \"string\"\r\n },\r\n \"dirSyncEnabled\": {\r\n \"type\": \"boolean\"\r\n },\r\n \"displayName\": {\r\n \"type\": \"string\"\r\n },\r\n \"facsimileTelephoneNumber\": {\r\n \"type\": \"string\"\r\n },\r\n \"givenName\": {\r\n \"type\": \"string\"\r\n },\r\n \"jobTitle\": {\r\n \"type\": \"string\"\r\n },\r\n \"lastDirSyncTime\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\",\r\n \"readOnly\": true\r\n },\r\n \"mail\": {\r\n \"type\": \"string\"\r\n },\r\n \"mailNickname\": {\r\n \"type\": \"string\"\r\n },\r\n \"mobile\": {\r\n \"type\": \"string\"\r\n },\r\n \"physicalDeliveryOfficeName\": {\r\n \"type\": \"string\"\r\n },\r\n \"postalCode\": {\r\n \"type\": \"string\"\r\n },\r\n \"provisioningErrors\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/definitions/ProvisioningError\"\r\n },\r\n \"readOnly\": true\r\n },\r\n \"proxyAddresses\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"readOnly\": true,\r\n \"example\": {\r\n \"proxyAddresses\": [\r\n \"SMTP:garthf@a830edad9050849NDA1.onmicrosoft.com\"\r\n ]\r\n }\r\n },\r\n \"sipProxyAddress\": {\r\n \"type\": \"string\",\r\n \"readOnly\": true\r\n },\r\n \"state\": {\r\n \"type\": \"string\"\r\n },\r\n \"streetAddress\": {\r\n \"type\": \"string\"\r\n },\r\n \"surname\": {\r\n \"type\": \"string\"\r\n },\r\n \"telephoneNumber\": {\r\n \"type\": \"string\"\r\n },\r\n \"thumbnailPhoto\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"required\": [\r\n \"displayName\"\r\n ]\r\n },\r\n \"ProvisioningError\": {\r\n \"properties\": {\r\n \"errorDetail\": {\r\n \"type\": \"string\",\r\n \"readOnly\": true\r\n },\r\n \"resolved\": {\r\n \"type\": \"boolean\",\r\n \"readOnly\": true\r\n },\r\n \"serviceInstance\": {\r\n \"type\": \"string\",\r\n \"readOnly\": true\r\n },\r\n \"timestamp\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\",\r\n \"readOnly\": true\r\n }\r\n }\r\n }\r\n }\r\n}\r\n", - "tags": [], - "children": [ - { - "path": "/contacts?api-version", - "operation": "GET", - "operationId": "get contacts", - "parameters": [ - { - "description": "

        The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.

        \n", - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "enum": [ - "1.5", - "1.6" - ], - "default": "1.6" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        OK. Indicates success. The results are returned in the response body.

        \n", - "examples": [ - { - "mimeType": "application/json", - "content": "{\n \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/Microsoft.DirectoryServices.Contact\",\n \"value\": [\n {\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\n \"objectType\": \"Contact\",\n \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\",\n \"deletionTimestamp\": null,\n \"city\": null,\n \"companyName\": null,\n \"country\": null,\n \"department\": null,\n \"dirSyncEnabled\": null,\n \"displayName\": \"Marcus Breyer\",\n \"facsimileTelephoneNumber\": null,\n \"givenName\": \"Marcus\",\n \"jobTitle\": null,\n \"lastDirSyncTime\": null,\n \"mail\": \"Marcus@contoso.com\",\n \"mailNickname\": \"MarcusBreyer\",\n \"mobile\": null,\n \"physicalDeliveryOfficeName\": null,\n \"postalCode\": null,\n \"provisioningErrors\": [],\n \"proxyAddresses\": [\n \"SMTP:Marcus@contoso.com\"\n ],\n \"sipProxyAddress\": null,\n \"state\": null,\n \"streetAddress\": null,\n \"surname\": \"Breyer\",\n \"telephoneNumber\": null\n },\n {\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\n \"objectType\": \"Contact\",\n \"objectId\": \"35110b16-360c-4c4a-93b2-03f065fabd93\",\n \"deletionTimestamp\": null,\n \"city\": null,\n \"companyName\": null,\n \"country\": null,\n \"department\": null,\n \"dirSyncEnabled\": null,\n \"displayName\": \"Yossi Ran\",\n \"facsimileTelephoneNumber\": null,\n \"givenName\": \"Yossi\",\n \"jobTitle\": null,\n \"lastDirSyncTime\": null,\n \"mail\": \"Yossi@contoso.com\",\n \"mailNickname\": \"YossiRan\",\n \"mobile\": null,\n \"physicalDeliveryOfficeName\": null,\n \"postalCode\": null,\n \"provisioningErrors\": [],\n \"proxyAddresses\": [\n \"SMTP:Yossi@contoso.com\"\n ],\n \"sipProxyAddress\": null,\n \"state\": null,\n \"streetAddress\": null,\n \"surname\": \"Ran\",\n \"telephoneNumber\": null\n },\n {\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\n \"objectType\": \"Contact\",\n \"objectId\": \"7163f3b8-70c9-43d2-b9e1-4467ddaf087a\",\n \"deletionTimestamp\": null,\n \"city\": null,\n \"companyName\": null,\n \"country\": null,\n \"department\": null,\n \"dirSyncEnabled\": null,\n \"displayName\": \"Jeremy Nelson\",\n \"facsimileTelephoneNumber\": null,\n \"givenName\": \"Jeremy\",\n \"jobTitle\": null,\n \"lastDirSyncTime\": null,\n \"mail\": \"Jeremy@contoso.com\",\n \"mailNickname\": \"JeremyNelson\",\n \"mobile\": null,\n \"physicalDeliveryOfficeName\": null,\n \"postalCode\": null,\n \"provisioningErrors\": [],\n \"proxyAddresses\": [\n \"SMTP:Jeremy@contoso.com\"\n ],\n \"sipProxyAddress\": null,\n \"state\": null,\n \"streetAddress\": null,\n \"surname\": \"Nelson\",\n \"telephoneNumber\": null\n },\n {\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\n \"objectType\": \"Contact\",\n \"objectId\": \"83234b5c-3a10-4108-8f36-39b1addadfdb\",\n \"deletionTimestamp\": null,\n \"city\": null,\n \"companyName\": null,\n \"country\": null,\n \"department\": null,\n \"dirSyncEnabled\": null,\n \"displayName\": \"David Strome\",\n \"facsimileTelephoneNumber\": null,\n \"givenName\": \"David\",\n \"jobTitle\": null,\n \"lastDirSyncTime\": null,\n \"mail\": \"David@contoso.com\",\n \"mailNickname\": \"DavidStrome\",\n \"mobile\": null,\n \"physicalDeliveryOfficeName\": null,\n \"postalCode\": null,\n \"provisioningErrors\": [],\n \"proxyAddresses\": [\n \"SMTP:David@contoso.com\"\n ],\n \"sipProxyAddress\": null,\n \"state\": null,\n \"streetAddress\": null,\n \"surname\": \"Strome\",\n \"telephoneNumber\": null\n },\n {\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\n \"objectType\": \"Contact\",\n \"objectId\": \"8c1315ce-bf6f-4e26-b24f-c830606ef41c\",\n \"deletionTimestamp\": null,\n \"city\": null,\n \"companyName\": null,\n \"country\": null,\n \"department\": null,\n \"dirSyncEnabled\": null,\n \"displayName\": \"Holly Holt\",\n \"facsimileTelephoneNumber\": null,\n \"givenName\": \"Holly\",\n \"jobTitle\": null,\n \"lastDirSyncTime\": null,\n \"mail\": \"Holly@contoso.com\",\n \"mailNickname\": \"HollyHolt\",\n \"mobile\": null,\n \"physicalDeliveryOfficeName\": null,\n \"postalCode\": null,\n \"provisioningErrors\": [],\n \"proxyAddresses\": [\n \"SMTP:Holly@contoso.com\"\n ],\n \"sipProxyAddress\": null,\n \"state\": null,\n \"streetAddress\": null,\n \"surname\": \"Holt\",\n \"telephoneNumber\": null\n }\n ]\n}" - } - ] - } - ], - "uid": "graph.windows.net/myorganization/Contacts/1.6/get contacts", - "htmlId": "graph_windows_net_myorganization_Contacts_1_6_get_contacts", - "description": "

        Required scope: Contacts.Read or Contacts.Write

        \n", - "summary": "

        You can get a collection of contacts from your tenant.

        \n", - "source": { - "remote": { - "path": "samples/seed/restapi/contacts_swagger2.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "" - }, - { - "path": "/contacts/{object_id}?api-version", - "operation": "GET", - "operationId": "get contact by id", - "parameters": [ - { - "description": "

        The object ID (GUID) of the target contact.

        \n", - "name": "object_id", - "in": "path", - "required": true, - "type": "string", - "default": "31944231-fd52-4a7f-b32e-7902a01fddf9" - }, - { - "description": "

        Specifies the version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.

        \n", - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "enum": [ - "1.5", - "1.6" - ], - "default": "1.6" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        OK. Indicates success. The contact is returned in the response body.

        \n", - "examples": [ - { - "mimeType": "application/json", - "content": "{\n \"odata.metadata\": \"https://graph.windows.net/graphdir1.onmicrosoft.com/$metadata#directoryObjects/Microsoft.DirectoryServices.Contact/@Element\",\n \"odata.type\": \"Microsoft.DirectoryServices.Contact\",\n \"objectType\": \"Contact\",\n \"objectId\": \"31944231-fd52-4a7f-b32e-7902a01fddf9\",\n \"deletionTimestamp\": null,\n \"city\": null,\n \"companyName\": null,\n \"country\": null,\n \"department\": null,\n \"dirSyncEnabled\": null,\n \"displayName\": \"Marcus Breyer\",\n \"facsimileTelephoneNumber\": null,\n \"givenName\": \"Marcus\",\n \"jobTitle\": null,\n \"lastDirSyncTime\": null,\n \"mail\": \"Marcus@contoso.com\",\n \"mailNickname\": \"MarcusBreyer\",\n \"mobile\": null,\n \"physicalDeliveryOfficeName\": null,\n \"postalCode\": null,\n \"provisioningErrors\": [],\n \"proxyAddresses\": [\n \"SMTP:Marcus@contoso.com\"\n ],\n \"sipProxyAddress\": null,\n \"state\": null,\n \"streetAddress\": null,\n \"surname\": \"Breyer\",\n \"telephoneNumber\": null\n}" - } - ] - } - ], - "uid": "graph.windows.net/myorganization/Contacts/1.6/get contact by id", - "htmlId": "graph_windows_net_myorganization_Contacts_1_6_get_contact_by_id", - "description": "

        Required scope: Contacts.Read or Contacts.Write

        \n", - "summary": "

        Get a contact by using the object ID.

        \n", - "source": { - "remote": { - "path": "samples/seed/restapi/contacts_swagger2.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20by%20id%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "" - }, - { - "path": "/contacts/{object_id}?api-version", - "operation": "PATCH", - "operationId": "update contact", - "parameters": [ - { - "description": "

        The object ID (GUID) of the target contact.

        \n", - "name": "object_id", - "in": "path", - "required": true, - "type": "string", - "default": "7163f3b8-70c9-43d2-b9e1-4467ddaf087a" - }, - { - "description": "

        The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.

        \n", - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "enum": [ - "1.5", - "1.6" - ], - "default": "1.6" - }, - { - "description": "

        this is request body, not real parameter

        \n", - "name": "bodyparam", - "in": "body", - "required": false, - "schema": { - "properties": [ - { - "key": "objectType", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "objectId", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "deletionTimestamp", - "value": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": null - } - }, - { - "key": "city", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "country", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "department", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "dirSyncEnabled", - "value": { - "type": "boolean", - "description": null - } - }, - { - "key": "displayName", - "value": { - "type": "string", - "required": true, - "description": null - } - }, - { - "key": "facsimileTelephoneNumber", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "givenName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "jobTitle", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "lastDirSyncTime", - "value": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": null - } - }, - { - "key": "mail", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "mailNickname", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "mobile", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "physicalDeliveryOfficeName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "postalCode", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "provisioningErrors", - "value": { - "type": "array", - "items": { - "properties": [ - { - "key": "errorDetail", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "resolved", - "value": { - "type": "boolean", - "readOnly": true, - "description": null - } - }, - { - "key": "serviceInstance", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "timestamp", - "value": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": null - } - } - ], - "x-internal-ref-name": "ProvisioningError", - "x-internal-loop-ref-name": null - }, - "readOnly": true, - "description": null - } - }, - { - "key": "proxyAddresses", - "value": { - "type": "array", - "items": { - "type": "string", - "properties": null, - "x-internal-ref-name": null, - "x-internal-loop-ref-name": null - }, - "readOnly": true, - "example": { - "proxyAddresses": [ - "SMTP:garthf@a830edad9050849NDA1.onmicrosoft.com" - ] - }, - "description": null - } - }, - { - "key": "sipProxyAddress", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "state", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "streetAddress", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "surname", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "telephoneNumber", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "thumbnailPhoto", - "value": { - "type": "string", - "description": null - } - } - ], - "x-internal-ref-name": "contact", - "example": { - "department": "Sales", - "jobTitle": "Sales Rep" - }, - "cTypeId": "contact", - "cType": "contact" - } - } - ], - "responses": [ - { - "statusCode": "204", - "description": "

        No Content. Indicates success. No response body is returned.

        \n" - } - ], - "uid": "graph.windows.net/myorganization/Contacts/1.6/update contact", - "htmlId": "graph_windows_net_myorganization_Contacts_1_6_update_contact", - "description": "

        Required scope: Contacts.Write

        \n", - "summary": "

        Change a contact's properties.

        \n", - "source": { - "remote": { - "path": "samples/seed/restapi/contacts_swagger2.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "" - }, - { - "path": "/contacts/{object_id}[?api-version]", - "operation": "DELETE", - "operationId": "delete contact", - "parameters": [ - { - "description": "

        The object ID (GUID) of the target contact.

        \n", - "name": "object_id", - "in": "path", - "required": true, - "type": "string", - "default": "7163f3b8-70c9-43d2-b9e1-4467ddaf087a" - }, - { - "description": "

        Specifies the version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.

        \n", - "name": "api-version", - "in": "query", - "required": false, - "type": "string", - "enum": [ - "1.5", - "1.6" - ], - "default": "1.6" - } - ], - "responses": [ - { - "statusCode": "204", - "description": "

        No Content. Indicates success.

        \n" - } - ], - "uid": "graph.windows.net/myorganization/Contacts/1.6/delete contact", - "htmlId": "graph_windows_net_myorganization_Contacts_1_6_delete_contact", - "description": "

        Required scope: Contacts.Write

        \n", - "summary": "

        Delete a contact.

        \n", - "source": { - "remote": { - "path": "samples/seed/restapi/contacts_swagger2.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "" - }, - { - "path": "/contacts/{object_id}/$links/manager?api-version", - "operation": "GET", - "operationId": "get contact manager link", - "parameters": [ - { - "description": "

        The object ID (GUID) of the target contact.

        \n", - "name": "object_id", - "in": "path", - "required": true, - "type": "string", - "default": "31944231-fd52-4a7f-b32e-7902a01fddf9" - }, - { - "description": "

        The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.

        \n", - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "enum": [ - "1.5", - "1.6" - ], - "default": "1.6" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        OK. Indicates success. A link to the contact's manager is returned.

        \n", - "examples": [ - { - "mimeType": "application/json", - "content": "{\n \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/$links/manager\",\n \"url\": \"https://graph.windows.net/myorganization/directoryObjects/35110b16-360c-4c4a-93b2-03f065fabd93/Microsoft.WindowsAzure.ActiveDirectory.Contact\"\n}" - } - ] - }, - { - "statusCode": "404", - "description": "

        Not Found. The requested resource was not found. This can occur if the manager property is not currently set for the specified contact. It can also have other causes, for example, a bad domain. A code and associated message is returned with the error.

        \n", - "examples": [ - { - "mimeType": "application/json", - "content": "{\n \"odata.error\": {\n \"code\": \"Request_ResourceNotFound\",\n \"message\": {\n \"lang\": \"en\",\n \"value\": \"Resource not found for the segment 'manager'.\"\n }\n }\n}" - } - ] - } - ], - "uid": "graph.windows.net/myorganization/Contacts/1.6/get contact manager link", - "htmlId": "graph_windows_net_myorganization_Contacts_1_6_get_contact_manager_link", - "description": "

        Required scope: Contacts.Read or Contacts.Write

        \n", - "summary": "

        Get a link to the contact's manager.

        \n", - "source": { - "remote": { - "path": "samples/seed/restapi/contacts_swagger2.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "" - }, - { - "path": "/contacts/{object_id}/$links/manager?api-version", - "operation": "PUT", - "operationId": "update contact manager", - "parameters": [ - { - "description": "

        The object ID (GUID) of the target contact.

        \n", - "name": "object_id", - "in": "path", - "required": true, - "type": "string", - "default": "31944231-fd52-4a7f-b32e-7902a01fddf9" - }, - { - "description": "

        The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.

        \n", - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "enum": [ - "1.5", - "1.6" - ], - "default": "1.6" - }, - { - "description": "

        The request body contains a single property that specifies the URL of the user or contact to add as manager.

        \n", - "name": "bodyparam", - "in": "body", - "required": true, - "schema": { - "properties": [ - { - "key": "url", - "value": { - "type": "string", - "required": true, - "description": null - } - } - ], - "example": { - "url": "https://graph.windows.net/myorganization/directoryObjects/35110b16-360c-4c4a-93b2-03f065fabd93" - } - } - } - ], - "responses": [ - { - "statusCode": "204", - "description": "

        No Content. Indicates success. No response body is returned.

        \n" - } - ], - "uid": "graph.windows.net/myorganization/Contacts/1.6/update contact manager", - "htmlId": "graph_windows_net_myorganization_Contacts_1_6_update_contact_manager", - "description": "

        Required scope: Contacts.Write

        \n", - "summary": "

        Update the contact's manager

        \n", - "source": { - "remote": { - "path": "samples/seed/restapi/contacts_swagger2.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "" - }, - { - "path": "/contacts/{object_id}/$links/manager?api-version", - "operation": "DELETE", - "operationId": "delete contact manager by id", - "parameters": [ - { - "description": "

        The object ID (GUID) of the target contact.

        \n", - "name": "object_id", - "in": "path", - "required": true, - "type": "string", - "default": "31944231-fd52-4a7f-b32e-7902a01fddf9" - }, - { - "description": "

        The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.

        \n", - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "enum": [ - "1.5", - "1.6" - ], - "default": "1.6" - } - ], - "responses": [ - { - "statusCode": "204", - "description": "

        No Content. Indicates success. N response body is returned.

        \n" - } - ], - "uid": "graph.windows.net/myorganization/Contacts/1.6/delete contact manager by id", - "htmlId": "graph_windows_net_myorganization_Contacts_1_6_delete_contact_manager_by_id", - "description": "

        Required scope: Contacts.Write

        \n", - "summary": "

        Delete the contact's manager.

        \n", - "source": { - "remote": { - "path": "samples/seed/restapi/contacts_swagger2.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "" - }, - { - "path": "/contacts/{object_id}/$links/directReports?api-version", - "operation": "GET", - "operationId": "get contact direct reports links", - "parameters": [ - { - "description": "

        The object ID (GUID) of the target contact.

        \n", - "name": "object_id", - "in": "path", - "required": true, - "type": "string", - "default": "31944231-fd52-4a7f-b32e-7902a01fddf9" - }, - { - "description": "

        The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.

        \n", - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "enum": [ - "1.5", - "1.6" - ], - "default": "1.6" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        OK. Indicates success. One or more direct reports are returned.

        \n", - "examples": [ - { - "mimeType": "application/json", - "content": "{\n \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/$links/directReports\",\n \"value\": [\n {\n \"url\": \"https://graph.windows.net/myorganization/directoryObjects/8c1315ce-bf6f-4e26-b24f-c830606ef41c/Microsoft.DirectoryServices.Contact\"\n }\n ]\n}" - } - ] - } - ], - "uid": "graph.windows.net/myorganization/Contacts/1.6/get contact direct reports links", - "htmlId": "graph_windows_net_myorganization_Contacts_1_6_get_contact_direct_reports_links", - "description": "

        Required scope: Contacts.Read or Contacts.Write

        \n", - "summary": "

        Get a links to the contact's direct reports.

        \n", - "source": { - "remote": { - "path": "samples/seed/restapi/contacts_swagger2.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "" - }, - { - "path": "/contacts/{object_id}/$links/memberOf?api-version", - "operation": "GET", - "operationId": "get contact memberOf links", - "parameters": [ - { - "description": "

        The object ID (GUID) of the target contact.

        \n", - "name": "object_id", - "in": "path", - "required": true, - "type": "string", - "default": "31944231-fd52-4a7f-b32e-7902a01fddf9" - }, - { - "description": "

        The version of the Graph API to target. Beginning with version 1.5, the api-version string is represented in major.minor format. Prior releases were represented as date strings: '2013-11-08' and '2013-04-05'. Required.

        \n", - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "enum": [ - "1.5", - "1.6" - ], - "default": "1.6" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        OK. Indicates success. One or more groups and/or directory roles are returned.

        \n", - "examples": [ - { - "mimeType": "application/json", - "content": "{\n \"odata.metadata\": \"https://graph.windows.net/myorganization/$metadata#directoryObjects/$links/memberOf\",\n \"value\": [\n {\n \"url\": \"https://graph.windows.net/myorganization/directoryObjects/12345678-b942-47c9-a10e-a4bee353ce60/Microsoft.DirectoryServices.Group\"\n }\n ]\n}" - } - ] - } - ], - "uid": "graph.windows.net/myorganization/Contacts/1.6/get contact memberOf links", - "htmlId": "graph_windows_net_myorganization_Contacts_1_6_get_contact_memberOf_links", - "description": "

        Required scope: Contacts.Read or Contacts.Write

        \n", - "summary": "

        Get a links to the contact's direct group and directory role memberships.

        \n", - "source": { - "remote": { - "path": "samples/seed/restapi/contacts_swagger2.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "" - } - ], - "uid": "graph.windows.net/myorganization/Contacts/1.6", - "htmlId": "graph_windows_net_myorganization_Contacts_1_6", - "name": "Contacts", - "swagger": "2.0", - "schemes": [ - "https" - ], - "documentType": "RestApi", - "source": { - "remote": { - "path": "samples/seed/restapi/contacts_swagger2.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "restapi/contacts_swagger2.json", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "restapi/contacts.html", - "_rel": "../", - "_tocKey": "~/restapi/toc.md", - "_tocPath": "restapi/toc.html", - "_tocRel": "toc.html", - "_jsonPath": "contacts.swagger.json", - "title": "Contacts", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", - "definitions": [ - { - "properties": [ - { - "key": "objectType", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "objectId", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "deletionTimestamp", - "value": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": null - } - }, - { - "key": "city", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "country", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "department", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "dirSyncEnabled", - "value": { - "type": "boolean", - "description": null - } - }, - { - "key": "displayName", - "value": { - "type": "string", - "required": true, - "description": null - } - }, - { - "key": "facsimileTelephoneNumber", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "givenName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "jobTitle", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "lastDirSyncTime", - "value": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": null - } - }, - { - "key": "mail", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "mailNickname", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "mobile", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "physicalDeliveryOfficeName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "postalCode", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "provisioningErrors", - "value": { - "type": "array", - "items": { - "properties": [ - { - "key": "errorDetail", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "resolved", - "value": { - "type": "boolean", - "readOnly": true, - "description": null - } - }, - { - "key": "serviceInstance", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "timestamp", - "value": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": null - } - } - ], - "x-internal-ref-name": "ProvisioningError", - "x-internal-loop-ref-name": null - }, - "readOnly": true, - "description": null, - "cTypeId": "ProvisioningError", - "cType": "ProvisioningError", - "cTypeIsArray": true - } - }, - { - "key": "proxyAddresses", - "value": { - "type": "array", - "items": { - "type": "string", - "properties": null, - "x-internal-ref-name": null, - "x-internal-loop-ref-name": null - }, - "readOnly": true, - "example": { - "proxyAddresses": [ - "SMTP:garthf@a830edad9050849NDA1.onmicrosoft.com" - ] - }, - "description": null - } - }, - { - "key": "sipProxyAddress", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "state", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "streetAddress", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "surname", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "telephoneNumber", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "thumbnailPhoto", - "value": { - "type": "string", - "description": null - } - } - ], - "x-internal-ref-name": "contact", - "example": { - "department": "Sales", - "jobTitle": "Sales Rep" - }, - "cTypeId": "contact", - "cType": "contact" - }, - { - "type": "array", - "items": { - "properties": [ - { - "key": "errorDetail", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "resolved", - "value": { - "type": "boolean", - "readOnly": true, - "description": null - } - }, - { - "key": "serviceInstance", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "timestamp", - "value": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": null - } - } - ], - "x-internal-ref-name": "ProvisioningError", - "x-internal-loop-ref-name": null - }, - "readOnly": true, - "description": null, - "cTypeId": "ProvisioningError", - "cType": "ProvisioningError", - "cTypeIsArray": true, - "properties": [ - { - "key": "errorDetail", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "resolved", - "value": { - "type": "boolean", - "readOnly": true, - "description": null - } - }, - { - "key": "serviceInstance", - "value": { - "type": "string", - "readOnly": true, - "description": null - } - }, - { - "key": "timestamp", - "value": { - "type": "string", - "format": "date-time", - "readOnly": true, - "description": null - } - } - ], - "x-internal-ref-name": "ProvisioningError" - } - ], - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/petstore.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/petstore.html.view.verified.json deleted file mode 100644 index 41f785e7897..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/petstore.html.view.verified.json +++ /dev/null @@ -1,2874 +0,0 @@ -{ - "_raw": "{\r\n \"basePath\": \"/v2\",\r\n \"definitions\": {\r\n \"ApiResponse\": {\r\n \"properties\": {\r\n \"code\": {\r\n \"format\": \"int32\",\r\n \"type\": \"integer\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n },\r\n \"type\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"type\": \"object\"\r\n },\r\n \"Category\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"format\": \"int64\",\r\n \"type\": \"integer\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"type\": \"object\",\r\n \"xml\": {\r\n \"name\": \"Category\"\r\n }\r\n },\r\n \"Order\": {\r\n \"properties\": {\r\n \"complete\": {\r\n \"default\": false,\r\n \"type\": \"boolean\"\r\n },\r\n \"id\": {\r\n \"format\": \"int64\",\r\n \"type\": \"integer\"\r\n },\r\n \"petId\": {\r\n \"format\": \"int64\",\r\n \"type\": \"integer\"\r\n },\r\n \"quantity\": {\r\n \"format\": \"int32\",\r\n \"type\": \"integer\"\r\n },\r\n \"shipDate\": {\r\n \"format\": \"date-time\",\r\n \"type\": \"string\"\r\n },\r\n \"status\": {\r\n \"description\": \"Order Status\",\r\n \"enum\": [\r\n \"placed\",\r\n \"approved\",\r\n \"delivered\"\r\n ],\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"type\": \"object\",\r\n \"xml\": {\r\n \"name\": \"Order\"\r\n }\r\n },\r\n \"Pet\": {\r\n \"properties\": {\r\n \"category\": {\r\n \"$ref\": \"#/definitions/Category\"\r\n },\r\n \"id\": {\r\n \"format\": \"int64\",\r\n \"type\": \"integer\"\r\n },\r\n \"name\": {\r\n \"example\": \"doggie\",\r\n \"type\": \"string\"\r\n },\r\n \"photoUrls\": {\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"type\": \"array\",\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"description\": \"pet status in the store\",\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\"\r\n },\r\n \"tags\": {\r\n \"items\": {\r\n \"$ref\": \"#/definitions/Tag\"\r\n },\r\n \"type\": \"array\",\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n }\r\n },\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"Tag\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"format\": \"int64\",\r\n \"type\": \"integer\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"type\": \"object\",\r\n \"xml\": {\r\n \"name\": \"Tag\"\r\n }\r\n },\r\n \"User\": {\r\n \"properties\": {\r\n \"email\": {\r\n \"type\": \"string\"\r\n },\r\n \"firstName\": {\r\n \"type\": \"string\"\r\n },\r\n \"id\": {\r\n \"format\": \"int64\",\r\n \"type\": \"integer\"\r\n },\r\n \"lastName\": {\r\n \"type\": \"string\"\r\n },\r\n \"password\": {\r\n \"type\": \"string\"\r\n },\r\n \"phone\": {\r\n \"type\": \"string\"\r\n },\r\n \"userStatus\": {\r\n \"description\": \"User Status\",\r\n \"format\": \"int32\",\r\n \"type\": \"integer\"\r\n },\r\n \"username\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"type\": \"object\",\r\n \"xml\": {\r\n \"name\": \"User\"\r\n }\r\n }\r\n },\r\n \"externalDocs\": {\r\n \"description\": \"Find out more about Swagger\",\r\n \"url\": \"http://swagger.io\"\r\n },\r\n \"host\": \"petstore.swagger.io\",\r\n \"info\": {\r\n \"contact\": {\r\n \"email\": \"apiteam@swagger.io\"\r\n },\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"license\": {\r\n \"name\": \"Apache 2.0\",\r\n \"url\": \"http://www.apache.org/licenses/LICENSE-2.0.html\"\r\n },\r\n \"termsOfService\": \"http://swagger.io/terms/\",\r\n \"title\": \"Swagger Petstore\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"paths\": {\r\n \"/pet\": {\r\n \"post\": {\r\n \"consumes\": [\r\n \"application/json\",\r\n \"application/xml\"\r\n ],\r\n \"description\": \"\",\r\n \"operationId\": \"addPet\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"Pet object that needs to be added to the store\",\r\n \"in\": \"body\",\r\n \"name\": \"body\",\r\n \"required\": true,\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/Pet\"\r\n }\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"405\": {\r\n \"description\": \"Invalid input\"\r\n }\r\n },\r\n \"security\": [\r\n {\r\n \"petstore_auth\": [\r\n \"write:pets\",\r\n \"read:pets\"\r\n ]\r\n }\r\n ],\r\n \"summary\": \"Add a new pet to the store\",\r\n \"tags\": [\r\n \"pet\",\r\n \"store\"\r\n ]\r\n },\r\n \"put\": {\r\n \"consumes\": [\r\n \"application/json\",\r\n \"application/xml\"\r\n ],\r\n \"description\": \"\",\r\n \"operationId\": \"updatePet\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"Pet object that needs to be added to the store\",\r\n \"in\": \"body\",\r\n \"name\": \"body\",\r\n \"required\": true,\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/Pet\"\r\n }\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"400\": {\r\n \"description\": \"Invalid ID supplied\"\r\n },\r\n \"404\": {\r\n \"description\": \"Pet not found\"\r\n },\r\n \"405\": {\r\n \"description\": \"Validation exception\"\r\n }\r\n },\r\n \"security\": [\r\n {\r\n \"petstore_auth\": [\r\n \"write:pets\",\r\n \"read:pets\"\r\n ]\r\n }\r\n ],\r\n \"summary\": \"Update an existing pet\",\r\n \"tags\": [\r\n \"pet\"\r\n ]\r\n }\r\n },\r\n \"/pet/findByStatus\": {\r\n \"get\": {\r\n \"description\": \"Multiple status values can be provided with comma separated strings\",\r\n \"operationId\": \"findPetsByStatus\",\r\n \"parameters\": [\r\n {\r\n \"collectionFormat\": \"multi\",\r\n \"description\": \"Status values that need to be considered for filter\",\r\n \"in\": \"query\",\r\n \"items\": {\r\n \"default\": \"available\",\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\"\r\n },\r\n \"name\": \"status\",\r\n \"required\": true,\r\n \"type\": \"array\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"successful operation\",\r\n \"schema\": {\r\n \"items\": {\r\n \"$ref\": \"#/definitions/Pet\"\r\n },\r\n \"type\": \"array\"\r\n }\r\n },\r\n \"400\": {\r\n \"description\": \"Invalid status value\"\r\n }\r\n },\r\n \"security\": [\r\n {\r\n \"petstore_auth\": [\r\n \"write:pets\",\r\n \"read:pets\"\r\n ]\r\n }\r\n ],\r\n \"summary\": \"Finds Pets by status\",\r\n \"tags\": [\r\n \"pet\"\r\n ]\r\n }\r\n },\r\n \"/pet/findByTags\": {\r\n \"get\": {\r\n \"deprecated\": true,\r\n \"description\": \"Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.\",\r\n \"operationId\": \"findPetsByTags\",\r\n \"parameters\": [\r\n {\r\n \"collectionFormat\": \"multi\",\r\n \"description\": \"Tags to filter by\",\r\n \"in\": \"query\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"name\": \"tags\",\r\n \"required\": true,\r\n \"type\": \"array\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"successful operation\",\r\n \"schema\": {\r\n \"items\": {\r\n \"$ref\": \"#/definitions/Pet\"\r\n },\r\n \"type\": \"array\"\r\n }\r\n },\r\n \"400\": {\r\n \"description\": \"Invalid tag value\"\r\n }\r\n },\r\n \"security\": [\r\n {\r\n \"petstore_auth\": [\r\n \"write:pets\",\r\n \"read:pets\"\r\n ]\r\n }\r\n ],\r\n \"summary\": \"Finds Pets by tags\",\r\n \"tags\": [\r\n \"pet\"\r\n ]\r\n }\r\n },\r\n \"/pet/{petId}\": {\r\n \"delete\": {\r\n \"description\": \"\",\r\n \"operationId\": \"deletePet\",\r\n \"parameters\": [\r\n {\r\n \"in\": \"header\",\r\n \"name\": \"api_key\",\r\n \"required\": false,\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"description\": \"Pet id to delete\",\r\n \"format\": \"int64\",\r\n \"in\": \"path\",\r\n \"name\": \"petId\",\r\n \"required\": true,\r\n \"type\": \"integer\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"400\": {\r\n \"description\": \"Invalid ID supplied\"\r\n },\r\n \"404\": {\r\n \"description\": \"Pet not found\"\r\n }\r\n },\r\n \"security\": [\r\n {\r\n \"petstore_auth\": [\r\n \"write:pets\",\r\n \"read:pets\"\r\n ]\r\n }\r\n ],\r\n \"summary\": \"Deletes a pet\",\r\n \"tags\": [\r\n \"pet\"\r\n ]\r\n },\r\n \"get\": {\r\n \"description\": \"Returns a single pet\",\r\n \"operationId\": \"getPetById\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"ID of pet to return\",\r\n \"format\": \"int64\",\r\n \"in\": \"path\",\r\n \"name\": \"petId\",\r\n \"required\": true,\r\n \"type\": \"integer\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"successful operation\",\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/Pet\"\r\n }\r\n },\r\n \"400\": {\r\n \"description\": \"Invalid ID supplied\"\r\n },\r\n \"404\": {\r\n \"description\": \"Pet not found\"\r\n }\r\n },\r\n \"security\": [\r\n {\r\n \"api_key\": []\r\n }\r\n ],\r\n \"summary\": \"Find pet by ID\",\r\n \"tags\": [\r\n \"pet\"\r\n ]\r\n },\r\n \"post\": {\r\n \"consumes\": [\r\n \"application/x-www-form-urlencoded\"\r\n ],\r\n \"description\": \"\",\r\n \"operationId\": \"updatePetWithForm\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"ID of pet that needs to be updated\",\r\n \"format\": \"int64\",\r\n \"in\": \"path\",\r\n \"name\": \"petId\",\r\n \"required\": true,\r\n \"type\": \"integer\"\r\n },\r\n {\r\n \"description\": \"Updated name of the pet\",\r\n \"in\": \"formData\",\r\n \"name\": \"name\",\r\n \"required\": false,\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"description\": \"Updated status of the pet\",\r\n \"in\": \"formData\",\r\n \"name\": \"status\",\r\n \"required\": false,\r\n \"type\": \"string\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"405\": {\r\n \"description\": \"Invalid input\"\r\n }\r\n },\r\n \"security\": [\r\n {\r\n \"petstore_auth\": [\r\n \"write:pets\",\r\n \"read:pets\"\r\n ]\r\n }\r\n ],\r\n \"summary\": \"Updates a pet in the store with form data\",\r\n \"tags\": [\r\n \"pet\"\r\n ]\r\n }\r\n },\r\n \"/pet/{petId}/uploadImage\": {\r\n \"post\": {\r\n \"consumes\": [\r\n \"multipart/form-data\"\r\n ],\r\n \"description\": \"\",\r\n \"operationId\": \"uploadFile\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"ID of pet to update\",\r\n \"format\": \"int64\",\r\n \"in\": \"path\",\r\n \"name\": \"petId\",\r\n \"required\": true,\r\n \"type\": \"integer\"\r\n },\r\n {\r\n \"description\": \"Additional data to pass to server\",\r\n \"in\": \"formData\",\r\n \"name\": \"additionalMetadata\",\r\n \"required\": false,\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"description\": \"file to upload\",\r\n \"in\": \"formData\",\r\n \"name\": \"file\",\r\n \"required\": false,\r\n \"type\": \"file\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"successful operation\",\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/ApiResponse\"\r\n }\r\n }\r\n },\r\n \"security\": [\r\n {\r\n \"petstore_auth\": [\r\n \"write:pets\",\r\n \"read:pets\"\r\n ]\r\n }\r\n ],\r\n \"summary\": \"uploads an image\",\r\n \"tags\": [\r\n \"pet\"\r\n ]\r\n }\r\n },\r\n \"/store/inventory\": {\r\n \"get\": {\r\n \"description\": \"Returns a map of status codes to quantities\",\r\n \"operationId\": \"getInventory\",\r\n \"parameters\": [],\r\n \"produces\": [\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"successful operation\",\r\n \"schema\": {\r\n \"additionalProperties\": {\r\n \"format\": \"int32\",\r\n \"type\": \"integer\"\r\n },\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"security\": [\r\n {\r\n \"api_key\": []\r\n }\r\n ],\r\n \"summary\": \"Returns pet inventories by status\",\r\n \"tags\": [\r\n \"store\"\r\n ]\r\n }\r\n },\r\n \"/store/order\": {\r\n \"post\": {\r\n \"description\": \"\",\r\n \"operationId\": \"placeOrder\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"order placed for purchasing the pet\",\r\n \"in\": \"body\",\r\n \"name\": \"body\",\r\n \"required\": true,\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/Order\"\r\n }\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"successful operation\",\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/Order\"\r\n }\r\n },\r\n \"400\": {\r\n \"description\": \"Invalid Order\"\r\n }\r\n },\r\n \"summary\": \"Place an order for a pet\",\r\n \"tags\": [\r\n \"store\"\r\n ]\r\n }\r\n },\r\n \"/store/order/{orderId}\": {\r\n \"delete\": {\r\n \"description\": \"For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors\",\r\n \"operationId\": \"deleteOrder\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"ID of the order that needs to be deleted\",\r\n \"format\": \"int64\",\r\n \"in\": \"path\",\r\n \"minimum\": 1.0,\r\n \"name\": \"orderId\",\r\n \"required\": true,\r\n \"type\": \"integer\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"400\": {\r\n \"description\": \"Invalid ID supplied\"\r\n },\r\n \"404\": {\r\n \"description\": \"Order not found\"\r\n }\r\n },\r\n \"summary\": \"Delete purchase order by ID\",\r\n \"tags\": [\r\n \"store\"\r\n ]\r\n },\r\n \"get\": {\r\n \"description\": \"For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions\",\r\n \"operationId\": \"getOrderById\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"ID of pet that needs to be fetched\",\r\n \"format\": \"int64\",\r\n \"in\": \"path\",\r\n \"maximum\": 10.0,\r\n \"minimum\": 1.0,\r\n \"name\": \"orderId\",\r\n \"required\": true,\r\n \"type\": \"integer\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"successful operation\",\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/Order\"\r\n }\r\n },\r\n \"400\": {\r\n \"description\": \"Invalid ID supplied\"\r\n },\r\n \"404\": {\r\n \"description\": \"Order not found\"\r\n }\r\n },\r\n \"summary\": \"Find purchase order by ID\",\r\n \"tags\": [\r\n \"store\"\r\n ]\r\n }\r\n },\r\n \"/user\": {\r\n \"post\": {\r\n \"description\": \"This can only be done by the logged in user.\",\r\n \"operationId\": \"createUser\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"Created user object\",\r\n \"in\": \"body\",\r\n \"name\": \"body\",\r\n \"required\": true,\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/User\"\r\n }\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"default\": {\r\n \"description\": \"successful operation\"\r\n }\r\n },\r\n \"summary\": \"Create user\",\r\n \"tags\": [\r\n \"user\"\r\n ]\r\n }\r\n },\r\n \"/user/createWithArray\": {\r\n \"post\": {\r\n \"description\": \"\",\r\n \"operationId\": \"createUsersWithArrayInput\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"List of user object\",\r\n \"in\": \"body\",\r\n \"name\": \"body\",\r\n \"required\": true,\r\n \"schema\": {\r\n \"items\": {\r\n \"$ref\": \"#/definitions/User\"\r\n },\r\n \"type\": \"array\"\r\n }\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"default\": {\r\n \"description\": \"successful operation\"\r\n }\r\n },\r\n \"summary\": \"Creates list of users with given input array\",\r\n \"tags\": [\r\n \"user\"\r\n ]\r\n }\r\n },\r\n \"/user/createWithList\": {\r\n \"post\": {\r\n \"description\": \"\",\r\n \"operationId\": \"createUsersWithListInput\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"List of user object\",\r\n \"in\": \"body\",\r\n \"name\": \"body\",\r\n \"required\": true,\r\n \"schema\": {\r\n \"items\": {\r\n \"$ref\": \"#/definitions/User\"\r\n },\r\n \"type\": \"array\"\r\n }\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"default\": {\r\n \"description\": \"successful operation\"\r\n }\r\n },\r\n \"summary\": \"Creates list of users with given input array\",\r\n \"tags\": [\r\n \"user\"\r\n ]\r\n }\r\n },\r\n \"/user/login\": {\r\n \"get\": {\r\n \"description\": \"\",\r\n \"operationId\": \"loginUser\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"The user name for login\",\r\n \"in\": \"query\",\r\n \"name\": \"username\",\r\n \"required\": true,\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"description\": \"The password for login in clear text\",\r\n \"in\": \"query\",\r\n \"name\": \"password\",\r\n \"required\": true,\r\n \"type\": \"string\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"successful operation\",\r\n \"headers\": {\r\n \"X-Expires-After\": {\r\n \"description\": \"date in UTC when token expires\",\r\n \"format\": \"date-time\",\r\n \"type\": \"string\"\r\n },\r\n \"X-Rate-Limit\": {\r\n \"description\": \"calls per hour allowed by the user\",\r\n \"format\": \"int32\",\r\n \"type\": \"integer\"\r\n }\r\n },\r\n \"schema\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"400\": {\r\n \"description\": \"Invalid username/password supplied\"\r\n }\r\n },\r\n \"summary\": \"Logs user into the system\",\r\n \"tags\": [\r\n \"user\"\r\n ]\r\n }\r\n },\r\n \"/user/logout\": {\r\n \"get\": {\r\n \"description\": \"\",\r\n \"operationId\": \"logoutUser\",\r\n \"parameters\": [],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"default\": {\r\n \"description\": \"successful operation\"\r\n }\r\n },\r\n \"summary\": \"Logs out current logged in user session\",\r\n \"tags\": [\r\n \"user\"\r\n ]\r\n }\r\n },\r\n \"/user/{username}\": {\r\n \"delete\": {\r\n \"description\": \"This can only be done by the logged in user.\",\r\n \"operationId\": \"deleteUser\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"The name that needs to be deleted\",\r\n \"in\": \"path\",\r\n \"name\": \"username\",\r\n \"required\": true,\r\n \"type\": \"string\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"400\": {\r\n \"description\": \"Invalid username supplied\"\r\n },\r\n \"404\": {\r\n \"description\": \"User not found\"\r\n }\r\n },\r\n \"summary\": \"Delete user\",\r\n \"tags\": [\r\n \"user\"\r\n ]\r\n },\r\n \"get\": {\r\n \"description\": \"\",\r\n \"operationId\": \"getUserByName\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"The name that needs to be fetched. Use user1 for testing. \",\r\n \"in\": \"path\",\r\n \"name\": \"username\",\r\n \"required\": true,\r\n \"type\": \"string\"\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"200\": {\r\n \"description\": \"successful operation\",\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/User\"\r\n }\r\n },\r\n \"400\": {\r\n \"description\": \"Invalid username supplied\"\r\n },\r\n \"404\": {\r\n \"description\": \"User not found\"\r\n }\r\n },\r\n \"summary\": \"Get user by user name\",\r\n \"tags\": [\r\n \"user\"\r\n ]\r\n },\r\n \"put\": {\r\n \"description\": \"This can only be done by the logged in user.\",\r\n \"operationId\": \"updateUser\",\r\n \"parameters\": [\r\n {\r\n \"description\": \"name that need to be updated\",\r\n \"in\": \"path\",\r\n \"name\": \"username\",\r\n \"required\": true,\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"description\": \"Updated user object\",\r\n \"in\": \"body\",\r\n \"name\": \"body\",\r\n \"required\": true,\r\n \"schema\": {\r\n \"$ref\": \"#/definitions/User\"\r\n }\r\n }\r\n ],\r\n \"produces\": [\r\n \"application/xml\",\r\n \"application/json\"\r\n ],\r\n \"responses\": {\r\n \"400\": {\r\n \"description\": \"Invalid user supplied\"\r\n },\r\n \"404\": {\r\n \"description\": \"User not found\"\r\n }\r\n },\r\n \"summary\": \"Updated user\",\r\n \"tags\": [\r\n ]\r\n }\r\n }\r\n },\r\n \"schemes\": [\r\n \"http\"\r\n ],\r\n \"securityDefinitions\": {\r\n \"api_key\": {\r\n \"in\": \"header\",\r\n \"name\": \"api_key\",\r\n \"type\": \"apiKey\"\r\n },\r\n \"petstore_auth\": {\r\n \"authorizationUrl\": \"http://petstore.swagger.io/oauth/dialog\",\r\n \"flow\": \"implicit\",\r\n \"scopes\": {\r\n \"read:pets\": \"read your pets\",\r\n \"write:pets\": \"modify pets in your account\"\r\n },\r\n \"type\": \"oauth2\"\r\n }\r\n },\r\n \"swagger\": \"2.0\",\r\n \"tags\": [\r\n {\r\n \"description\": \"Everything about your **Pets**\",\r\n \"x-bookmark-id\": \"EverythingAboutYourPets\",\r\n \"externalDocs\": {\r\n \"description\": \"Find out more\",\r\n \"url\": \"http://swagger.io\"\r\n },\r\n \"name\": \"pet\"\r\n },\r\n {\r\n \"description\": \"Access to Petstore orders\",\r\n \"name\": \"store\"\r\n },\r\n {\r\n \"description\": \"Operations about user\",\r\n \"externalDocs\": {\r\n \"description\": \"Find out more about our store\",\r\n \"url\": \"http://swagger.io\"\r\n },\r\n \"name\": \"user\"\r\n }\r\n ]\r\n}", - "tags": [ - { - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/tag/pet", - "name": "pet", - "description": "

        Description for pet tag

        \n", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_tag_pet", - "externalDocs": { - "description": "Find out more", - "url": "http://swagger.io" - }, - "children": [ - { - "path": "/pet", - "operation": "POST", - "operationId": "addPet", - "tags": [ - "pet", - "store" - ], - "parameters": [ - { - "description": "

        Pet object that needs to be added to the store

        \n", - "name": "body", - "in": "body", - "required": true, - "schema": { - "properties": [ - { - "key": "category", - "value": { - "type": "object", - "xml": { - "name": "Category" - }, - "x-internal-ref-name": "Category", - "description": null, - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "x-internal-ref-name": "Category", - "x-internal-loop-ref-name": null - } - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "example": "doggie", - "type": "string", - "required": true, - "description": null - } - }, - { - "key": "photoUrls", - "value": { - "items": { - "type": "string", - "properties": null, - "x-internal-ref-name": null, - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "photoUrl", - "wrapped": true - }, - "required": true, - "description": null - } - }, - { - "key": "status", - "value": { - "description": "

        pet status in the store

        \n", - "enum": [ - "available", - "pending", - "sold" - ], - "type": "string" - } - }, - { - "key": "tags", - "value": { - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "Tag" - }, - "x-internal-ref-name": "Tag", - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "tag", - "wrapped": true - }, - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "Pet" - }, - "x-internal-ref-name": "Pet", - "cTypeId": "Pet", - "cType": "Pet" - } - } - ], - "responses": [ - { - "statusCode": "405", - "description": "

        Invalid input

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/addPet", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_addPet", - "description": "", - "summary": "

        Add a new pet to the store

        \n", - "consumes": [ - "application/json", - "application/xml" - ], - "produces": [ - "application/xml", - "application/json" - ], - "security": [ - { - "petstore_auth": [ - "write:pets", - "read:pets" - ] - } - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "footer": "\n
        \n

        NOTE: Add pet only when you needs.

        \n
        \n", - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/pet", - "operation": "PUT", - "operationId": "updatePet", - "tags": [ - "pet" - ], - "parameters": [ - { - "description": "

        Pet object that needs to be added to the store

        \n", - "name": "body", - "in": "body", - "required": true, - "schema": { - "properties": [ - { - "key": "category", - "value": { - "type": "object", - "xml": { - "name": "Category" - }, - "x-internal-ref-name": "Category", - "description": null, - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "x-internal-ref-name": "Category", - "x-internal-loop-ref-name": null - } - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "example": "doggie", - "type": "string", - "required": true, - "description": null - } - }, - { - "key": "photoUrls", - "value": { - "items": { - "type": "string", - "properties": null, - "x-internal-ref-name": null, - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "photoUrl", - "wrapped": true - }, - "required": true, - "description": null - } - }, - { - "key": "status", - "value": { - "description": "

        pet status in the store

        \n", - "enum": [ - "available", - "pending", - "sold" - ], - "type": "string" - } - }, - { - "key": "tags", - "value": { - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "Tag" - }, - "x-internal-ref-name": "Tag", - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "tag", - "wrapped": true - }, - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "Pet" - }, - "x-internal-ref-name": "Pet", - "cTypeId": "Pet", - "cType": "Pet" - } - } - ], - "responses": [ - { - "statusCode": "400", - "description": "

        Invalid ID supplied

        \n" - }, - { - "statusCode": "404", - "description": "

        Pet not found

        \n" - }, - { - "statusCode": "405", - "description": "

        Validation exception

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/updatePet", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet", - "description": "", - "summary": "

        Update an existing pet

        \n", - "consumes": [ - "application/json", - "application/xml" - ], - "produces": [ - "application/xml", - "application/json" - ], - "security": [ - { - "petstore_auth": [ - "write:pets", - "read:pets" - ] - } - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/pet/findByStatus?status", - "operation": "GET", - "operationId": "findPetsByStatus", - "tags": [ - "pet" - ], - "parameters": [ - { - "description": "

        Status values that need to be considered for filter

        \n", - "name": "status", - "collectionFormat": "multi", - "in": "query", - "items": { - "default": "available", - "enum": [ - "available", - "pending", - "sold" - ], - "type": "string" - }, - "required": true, - "type": "array" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        successful operation

        \n", - "schema": { - "items": { - "properties": { - "category": { - "properties": { - "id": { - "format": "int64", - "type": "integer" - }, - "name": { - "type": "string" - } - }, - "type": "object", - "xml": { - "name": "Category" - }, - "x-internal-ref-name": "Category" - }, - "id": { - "format": "int64", - "type": "integer" - }, - "name": { - "example": "doggie", - "type": "string" - }, - "photoUrls": { - "items": { - "type": "string" - }, - "type": "array", - "xml": { - "name": "photoUrl", - "wrapped": true - } - }, - "status": { - "description": "

        pet status in the store

        \n", - "enum": [ - "available", - "pending", - "sold" - ], - "type": "string" - }, - "tags": { - "items": { - "properties": { - "id": { - "format": "int64", - "type": "integer" - }, - "name": { - "type": "string" - } - }, - "type": "object", - "xml": { - "name": "Tag" - }, - "x-internal-ref-name": "Tag" - }, - "type": "array", - "xml": { - "name": "tag", - "wrapped": true - } - } - }, - "required": [ - "name", - "photoUrls" - ], - "type": "object", - "xml": { - "name": "Pet" - }, - "x-internal-ref-name": "Pet" - }, - "type": "array", - "cTypeId": "Pet", - "cType": "Pet", - "cTypeIsArray": true - } - }, - { - "statusCode": "400", - "description": "

        Invalid status value

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/findPetsByStatus", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByStatus", - "description": "

        Multiple status values can be provided with comma separated strings

        \n", - "summary": "

        Finds Pets by status

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "security": [ - { - "petstore_auth": [ - "write:pets", - "read:pets" - ] - } - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/pet/findByTags?tags", - "operation": "GET", - "operationId": "findPetsByTags", - "tags": [ - "pet" - ], - "parameters": [ - { - "description": "

        Tags to filter by

        \n", - "name": "tags", - "collectionFormat": "multi", - "in": "query", - "items": { - "type": "string" - }, - "required": true, - "type": "array" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        successful operation

        \n", - "schema": { - "items": { - "properties": { - "category": { - "properties": { - "id": { - "format": "int64", - "type": "integer" - }, - "name": { - "type": "string" - } - }, - "type": "object", - "xml": { - "name": "Category" - }, - "x-internal-ref-name": "Category" - }, - "id": { - "format": "int64", - "type": "integer" - }, - "name": { - "example": "doggie", - "type": "string" - }, - "photoUrls": { - "items": { - "type": "string" - }, - "type": "array", - "xml": { - "name": "photoUrl", - "wrapped": true - } - }, - "status": { - "description": "

        pet status in the store

        \n", - "enum": [ - "available", - "pending", - "sold" - ], - "type": "string" - }, - "tags": { - "items": { - "properties": { - "id": { - "format": "int64", - "type": "integer" - }, - "name": { - "type": "string" - } - }, - "type": "object", - "xml": { - "name": "Tag" - }, - "x-internal-ref-name": "Tag" - }, - "type": "array", - "xml": { - "name": "tag", - "wrapped": true - } - } - }, - "required": [ - "name", - "photoUrls" - ], - "type": "object", - "xml": { - "name": "Pet" - }, - "x-internal-ref-name": "Pet" - }, - "type": "array", - "cTypeId": "Pet", - "cType": "Pet", - "cTypeIsArray": true - } - }, - { - "statusCode": "400", - "description": "

        Invalid tag value

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/findPetsByTags", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags", - "description": "

        Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.

        \n", - "summary": "

        Finds Pets by tags

        \n", - "deprecated": true, - "produces": [ - "application/xml", - "application/json" - ], - "security": [ - { - "petstore_auth": [ - "write:pets", - "read:pets" - ] - } - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/pet/{petId}", - "operation": "DELETE", - "operationId": "deletePet", - "tags": [ - "pet" - ], - "parameters": [ - { - "name": "api_key", - "in": "header", - "required": false, - "type": "string" - }, - { - "description": "

        Pet id to delete

        \n", - "name": "petId", - "format": "int64", - "in": "path", - "required": true, - "type": "integer" - } - ], - "responses": [ - { - "statusCode": "400", - "description": "

        Invalid ID supplied

        \n" - }, - { - "statusCode": "404", - "description": "

        Pet not found

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/deletePet", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deletePet", - "description": "", - "summary": "

        Deletes a pet

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "security": [ - { - "petstore_auth": [ - "write:pets", - "read:pets" - ] - } - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/pet/{petId}", - "operation": "GET", - "operationId": "getPetById", - "tags": [ - "pet" - ], - "parameters": [ - { - "description": "

        ID of pet to return

        \n", - "name": "petId", - "format": "int64", - "in": "path", - "required": true, - "type": "integer" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        successful operation

        \n", - "schema": { - "properties": [ - { - "key": "category", - "value": { - "type": "object", - "xml": { - "name": "Category" - }, - "x-internal-ref-name": "Category", - "description": null, - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "x-internal-ref-name": "Category", - "x-internal-loop-ref-name": null - } - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "example": "doggie", - "type": "string", - "required": true, - "description": null - } - }, - { - "key": "photoUrls", - "value": { - "items": { - "type": "string", - "properties": null, - "x-internal-ref-name": null, - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "photoUrl", - "wrapped": true - }, - "required": true, - "description": null - } - }, - { - "key": "status", - "value": { - "description": "

        pet status in the store

        \n", - "enum": [ - "available", - "pending", - "sold" - ], - "type": "string" - } - }, - { - "key": "tags", - "value": { - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "Tag" - }, - "x-internal-ref-name": "Tag", - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "tag", - "wrapped": true - }, - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "Pet" - }, - "x-internal-ref-name": "Pet", - "cTypeId": "Pet", - "cType": "Pet" - } - }, - { - "statusCode": "400", - "description": "

        Invalid ID supplied

        \n" - }, - { - "statusCode": "404", - "description": "

        Pet not found

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/getPetById", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getPetById", - "description": "

        Returns a single pet

        \n", - "summary": "

        Find pet by ID

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "security": [ - { - "api_key": [] - } - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/pet/{petId}", - "operation": "POST", - "operationId": "updatePetWithForm", - "tags": [ - "pet" - ], - "parameters": [ - { - "description": "

        ID of pet that needs to be updated

        \n", - "name": "petId", - "format": "int64", - "in": "path", - "required": true, - "type": "integer" - }, - { - "description": "

        Updated name of the pet

        \n", - "name": "name", - "in": "formData", - "required": false, - "type": "string" - }, - { - "description": "

        Updated status of the pet

        \n", - "name": "status", - "in": "formData", - "required": false, - "type": "string" - } - ], - "responses": [ - { - "statusCode": "405", - "description": "

        Invalid input

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/updatePetWithForm", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm", - "description": "", - "summary": "

        Updates a pet in the store with form data

        \n", - "consumes": [ - "application/x-www-form-urlencoded" - ], - "produces": [ - "application/xml", - "application/json" - ], - "security": [ - { - "petstore_auth": [ - "write:pets", - "read:pets" - ] - } - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/pet/{petId}/uploadImage", - "operation": "POST", - "operationId": "uploadFile", - "tags": [ - "pet" - ], - "parameters": [ - { - "description": "

        ID of pet to update

        \n", - "name": "petId", - "format": "int64", - "in": "path", - "required": true, - "type": "integer" - }, - { - "description": "

        Additional data to pass to server

        \n", - "name": "additionalMetadata", - "in": "formData", - "required": false, - "type": "string" - }, - { - "description": "

        file to upload

        \n", - "name": "file", - "in": "formData", - "required": false, - "type": "file" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        successful operation

        \n", - "schema": { - "properties": [ - { - "key": "code", - "value": { - "format": "int32", - "type": "integer", - "description": null - } - }, - { - "key": "message", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "type", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "x-internal-ref-name": "ApiResponse", - "cTypeId": "ApiResponse", - "cType": "ApiResponse" - } - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/uploadFile", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_uploadFile", - "description": "", - "summary": "

        uploads an image

        \n", - "consumes": [ - "multipart/form-data" - ], - "produces": [ - "application/json" - ], - "security": [ - { - "petstore_auth": [ - "write:pets", - "read:pets" - ] - } - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - } - ], - "conceptual": "" - }, - { - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/tag/store", - "conceptual": "

        Additional description for store tag

        \n", - "name": "store", - "description": "

        Access to Petstore orders

        \n", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_tag_store", - "children": [ - { - "path": "/pet", - "operation": "POST", - "operationId": "addPet", - "tags": [ - "pet", - "store" - ], - "parameters": [ - { - "description": "

        Pet object that needs to be added to the store

        \n", - "name": "body", - "in": "body", - "required": true, - "schema": { - "properties": [ - { - "key": "category", - "value": { - "type": "object", - "xml": { - "name": "Category" - }, - "x-internal-ref-name": "Category", - "description": null, - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "x-internal-ref-name": "Category", - "x-internal-loop-ref-name": null - } - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "example": "doggie", - "type": "string", - "required": true, - "description": null - } - }, - { - "key": "photoUrls", - "value": { - "items": { - "type": "string", - "properties": null, - "x-internal-ref-name": null, - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "photoUrl", - "wrapped": true - }, - "required": true, - "description": null - } - }, - { - "key": "status", - "value": { - "description": "

        pet status in the store

        \n", - "enum": [ - "available", - "pending", - "sold" - ], - "type": "string" - } - }, - { - "key": "tags", - "value": { - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "Tag" - }, - "x-internal-ref-name": "Tag", - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "tag", - "wrapped": true - }, - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "Pet" - }, - "x-internal-ref-name": "Pet", - "cTypeId": "Pet", - "cType": "Pet" - } - } - ], - "responses": [ - { - "statusCode": "405", - "description": "

        Invalid input

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/addPet", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_addPet", - "description": "", - "summary": "

        Add a new pet to the store

        \n", - "consumes": [ - "application/json", - "application/xml" - ], - "produces": [ - "application/xml", - "application/json" - ], - "security": [ - { - "petstore_auth": [ - "write:pets", - "read:pets" - ] - } - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "footer": "\n
        \n

        NOTE: Add pet only when you needs.

        \n
        \n", - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/store/inventory", - "operation": "GET", - "operationId": "getInventory", - "tags": [ - "store" - ], - "parameters": [], - "responses": [ - { - "statusCode": "200", - "description": "

        successful operation

        \n", - "schema": { - "additionalProperties": { - "format": "int32", - "type": "integer" - }, - "type": "object" - } - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/getInventory", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory", - "description": "

        Returns a map of status codes to quantities

        \n", - "summary": "

        Returns pet inventories by status

        \n", - "produces": [ - "application/json" - ], - "security": [ - { - "api_key": [] - } - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/store/order", - "operation": "POST", - "operationId": "placeOrder", - "tags": [ - "store" - ], - "parameters": [ - { - "description": "

        order placed for purchasing the pet

        \n", - "name": "body", - "in": "body", - "required": true, - "schema": { - "properties": [ - { - "key": "complete", - "value": { - "default": false, - "type": "boolean", - "description": null - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "petId", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "quantity", - "value": { - "format": "int32", - "type": "integer", - "description": null - } - }, - { - "key": "shipDate", - "value": { - "format": "date-time", - "type": "string", - "description": null - } - }, - { - "key": "status", - "value": { - "description": "

        Order Status

        \n", - "enum": [ - "placed", - "approved", - "delivered" - ], - "type": "string" - } - } - ], - "type": "object", - "xml": { - "name": "Order" - }, - "x-internal-ref-name": "Order", - "cTypeId": "Order", - "cType": "Order" - } - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        successful operation

        \n", - "schema": { - "properties": [ - { - "key": "complete", - "value": { - "default": false, - "type": "boolean", - "description": null - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "petId", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "quantity", - "value": { - "format": "int32", - "type": "integer", - "description": null - } - }, - { - "key": "shipDate", - "value": { - "format": "date-time", - "type": "string", - "description": null - } - }, - { - "key": "status", - "value": { - "description": "

        Order Status

        \n", - "enum": [ - "placed", - "approved", - "delivered" - ], - "type": "string" - } - } - ], - "type": "object", - "xml": { - "name": "Order" - }, - "x-internal-ref-name": "Order", - "cTypeId": "Order", - "cType": "Order" - } - }, - { - "statusCode": "400", - "description": "

        Invalid Order

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/placeOrder", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_placeOrder", - "description": "", - "summary": "

        Place an order for a pet

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/store/order/{orderId}", - "operation": "DELETE", - "operationId": "deleteOrder", - "tags": [ - "store" - ], - "parameters": [ - { - "description": "

        ID of the order that needs to be deleted

        \n", - "name": "orderId", - "format": "int64", - "in": "path", - "minimum": 1.0, - "required": true, - "type": "integer" - } - ], - "responses": [ - { - "statusCode": "400", - "description": "

        Invalid ID supplied

        \n" - }, - { - "statusCode": "404", - "description": "

        Order not found

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/deleteOrder", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder", - "description": "

        For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors

        \n", - "summary": "

        Delete purchase order by ID

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/store/order/{orderId}", - "operation": "GET", - "operationId": "getOrderById", - "tags": [ - "store" - ], - "parameters": [ - { - "description": "

        ID of pet that needs to be fetched

        \n", - "name": "orderId", - "format": "int64", - "in": "path", - "maximum": 10.0, - "minimum": 1.0, - "required": true, - "type": "integer" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        successful operation

        \n", - "schema": { - "properties": [ - { - "key": "complete", - "value": { - "default": false, - "type": "boolean", - "description": null - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "petId", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "quantity", - "value": { - "format": "int32", - "type": "integer", - "description": null - } - }, - { - "key": "shipDate", - "value": { - "format": "date-time", - "type": "string", - "description": null - } - }, - { - "key": "status", - "value": { - "description": "

        Order Status

        \n", - "enum": [ - "placed", - "approved", - "delivered" - ], - "type": "string" - } - } - ], - "type": "object", - "xml": { - "name": "Order" - }, - "x-internal-ref-name": "Order", - "cTypeId": "Order", - "cType": "Order" - } - }, - { - "statusCode": "400", - "description": "

        Invalid ID supplied

        \n" - }, - { - "statusCode": "404", - "description": "

        Order not found

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/getOrderById", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getOrderById", - "description": "

        For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions

        \n", - "summary": "

        Find purchase order by ID

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - } - ] - }, - { - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/tag/user", - "name": "user", - "description": "

        Operations about user

        \n", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_tag_user", - "externalDocs": { - "description": "Find out more about our store", - "url": "http://swagger.io" - }, - "children": [ - { - "path": "/user", - "operation": "POST", - "operationId": "createUser", - "tags": [ - "user" - ], - "parameters": [ - { - "description": "

        Created user object

        \n", - "name": "body", - "in": "body", - "required": true, - "schema": { - "properties": [ - { - "key": "email", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "firstName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "lastName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "password", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "phone", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "userStatus", - "value": { - "description": "

        User Status

        \n", - "format": "int32", - "type": "integer" - } - }, - { - "key": "username", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "User" - }, - "x-internal-ref-name": "User", - "cTypeId": "User", - "cType": "User" - } - } - ], - "responses": [ - { - "statusCode": "default", - "description": "

        successful operation

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/createUser", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUser", - "description": "

        This can only be done by the logged in user.

        \n", - "summary": "

        Create user

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/user/createWithArray", - "operation": "POST", - "operationId": "createUsersWithArrayInput", - "tags": [ - "user" - ], - "parameters": [ - { - "description": "

        List of user object

        \n", - "name": "body", - "in": "body", - "required": true, - "schema": { - "items": { - "properties": { - "email": { - "type": "string" - }, - "firstName": { - "type": "string" - }, - "id": { - "format": "int64", - "type": "integer" - }, - "lastName": { - "type": "string" - }, - "password": { - "type": "string" - }, - "phone": { - "type": "string" - }, - "userStatus": { - "description": "

        User Status

        \n", - "format": "int32", - "type": "integer" - }, - "username": { - "type": "string" - } - }, - "type": "object", - "xml": { - "name": "User" - }, - "x-internal-ref-name": "User" - }, - "type": "array", - "cTypeId": "User", - "cType": "User", - "cTypeIsArray": true - } - } - ], - "responses": [ - { - "statusCode": "default", - "description": "

        successful operation

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/createUsersWithArrayInput", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput", - "description": "", - "summary": "

        Creates list of users with given input array

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/user/createWithList", - "operation": "POST", - "operationId": "createUsersWithListInput", - "tags": [ - "user" - ], - "parameters": [ - { - "description": "

        List of user object

        \n", - "name": "body", - "in": "body", - "required": true, - "schema": { - "items": { - "properties": { - "email": { - "type": "string" - }, - "firstName": { - "type": "string" - }, - "id": { - "format": "int64", - "type": "integer" - }, - "lastName": { - "type": "string" - }, - "password": { - "type": "string" - }, - "phone": { - "type": "string" - }, - "userStatus": { - "description": "

        User Status

        \n", - "format": "int32", - "type": "integer" - }, - "username": { - "type": "string" - } - }, - "type": "object", - "xml": { - "name": "User" - }, - "x-internal-ref-name": "User" - }, - "type": "array", - "cTypeId": "User", - "cType": "User", - "cTypeIsArray": true - } - } - ], - "responses": [ - { - "statusCode": "default", - "description": "

        successful operation

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/createUsersWithListInput", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithListInput", - "description": "", - "summary": "

        Creates list of users with given input array

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/user/login?username&password", - "operation": "GET", - "operationId": "loginUser", - "tags": [ - "user" - ], - "parameters": [ - { - "description": "

        The user name for login

        \n", - "name": "username", - "in": "query", - "required": true, - "type": "string" - }, - { - "description": "

        The password for login in clear text

        \n", - "name": "password", - "in": "query", - "required": true, - "type": "string" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        successful operation

        \n", - "headers": { - "X-Expires-After": { - "description": "

        date in UTC when token expires

        \n", - "format": "date-time", - "type": "string" - }, - "X-Rate-Limit": { - "description": "

        calls per hour allowed by the user

        \n", - "format": "int32", - "type": "integer" - } - }, - "schema": { - "type": "string" - } - }, - { - "statusCode": "400", - "description": "

        Invalid username/password supplied

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/loginUser", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser", - "description": "", - "summary": "

        Logs user into the system

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/user/logout", - "operation": "GET", - "operationId": "logoutUser", - "tags": [ - "user" - ], - "parameters": [], - "responses": [ - { - "statusCode": "default", - "description": "

        successful operation

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/logoutUser", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_logoutUser", - "description": "", - "summary": "

        Logs out current logged in user session

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/user/{username}", - "operation": "DELETE", - "operationId": "deleteUser", - "tags": [ - "user" - ], - "parameters": [ - { - "description": "

        The name that needs to be deleted

        \n", - "name": "username", - "in": "path", - "required": true, - "type": "string" - } - ], - "responses": [ - { - "statusCode": "400", - "description": "

        Invalid username supplied

        \n" - }, - { - "statusCode": "404", - "description": "

        User not found

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/deleteUser", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser", - "description": "

        This can only be done by the logged in user.

        \n", - "summary": "

        Delete user

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - }, - { - "path": "/user/{username}", - "operation": "GET", - "operationId": "getUserByName", - "tags": [ - "user" - ], - "parameters": [ - { - "description": "

        The name that needs to be fetched. Use user1 for testing.

        \n", - "name": "username", - "in": "path", - "required": true, - "type": "string" - } - ], - "responses": [ - { - "statusCode": "200", - "description": "

        successful operation

        \n", - "schema": { - "properties": [ - { - "key": "email", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "firstName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "lastName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "password", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "phone", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "userStatus", - "value": { - "description": "

        User Status

        \n", - "format": "int32", - "type": "integer" - } - }, - { - "key": "username", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "User" - }, - "x-internal-ref-name": "User", - "cTypeId": "User", - "cType": "User" - } - }, - { - "statusCode": "400", - "description": "

        Invalid username supplied

        \n" - }, - { - "statusCode": "404", - "description": "

        User not found

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/getUserByName", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getUserByName", - "description": "", - "summary": "

        Get user by user name

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "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'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "", - "includedInTags": true - } - ], - "conceptual": "" - } - ], - "children": [ - { - "path": "/user/{username}", - "operation": "PUT", - "operationId": "updateUser", - "tags": [], - "parameters": [ - { - "description": "

        name that need to be updated

        \n", - "name": "username", - "in": "path", - "required": true, - "type": "string" - }, - { - "description": "

        Updated user object

        \n", - "name": "body", - "in": "body", - "required": true, - "schema": { - "properties": [ - { - "key": "email", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "firstName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "lastName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "password", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "phone", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "userStatus", - "value": { - "description": "

        User Status

        \n", - "format": "int32", - "type": "integer" - } - }, - { - "key": "username", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "User" - }, - "x-internal-ref-name": "User", - "cTypeId": "User", - "cType": "User" - } - } - ], - "responses": [ - { - "statusCode": "400", - "description": "

        Invalid user supplied

        \n" - }, - { - "statusCode": "404", - "description": "

        User not found

        \n" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0/updateUser", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser", - "description": "

        This can only be done by the logged in user.

        \n", - "summary": "

        Updated user

        \n", - "produces": [ - "application/xml", - "application/json" - ], - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "conceptual": "", - "footer": "", - "remarks": "" - } - ], - "uid": "petstore.swagger.io/v2/Swagger Petstore/1.0.0", - "htmlId": "petstore_swagger_io_v2_Swagger_Petstore_1_0_0", - "name": "Swagger Petstore", - "conceptual": "\n

        Describe APIs in Pet Store

        \n", - "externalDocs": { - "description": "

        Find out more about Swagger

        \n", - "url": "http://swagger.io" - }, - "schemes": [ - "http" - ], - "securityDefinitions": { - "api_key": { - "in": "header", - "name": "api_key", - "type": "apiKey" - }, - "petstore_auth": { - "authorizationUrl": "http://petstore.swagger.io/oauth/dialog", - "flow": "implicit", - "scopes": { - "read:pets": "read your pets", - "write:pets": "modify pets in your account" - }, - "type": "oauth2" - } - }, - "swagger": "2.0", - "documentType": "RestApi", - "source": { - "remote": { - "path": "samples/seed/restapi/petstore.swagger.json", - "branch": "main", - "repo": "https://github.com/dotnet/docfx" - }, - "startLine": 0.0, - "endLine": 0.0 - }, - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "footer": "

        See Alsos

        \n

        See other REST APIs:

        \n\n", - "title": "Pet Store APIs", - "_key": "restapi/petstore.swagger.json", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "restapi/petstore.html", - "_rel": "../", - "_tocKey": "~/restapi/toc.md", - "_tocPath": "restapi/toc.html", - "_tocRel": "toc.html", - "_jsonPath": "petstore.swagger.json", - "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", - "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", - "isTagLayout": true, - "definitions": [ - { - "properties": [ - { - "key": "category", - "value": { - "type": "object", - "xml": { - "name": "Category" - }, - "x-internal-ref-name": "Category", - "description": null, - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "x-internal-ref-name": "Category", - "x-internal-loop-ref-name": null - }, - "cTypeId": "Category", - "cType": "Category", - "cTypeIsArray": true - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "example": "doggie", - "type": "string", - "required": true, - "description": null - } - }, - { - "key": "photoUrls", - "value": { - "items": { - "type": "string", - "properties": null, - "x-internal-ref-name": null, - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "photoUrl", - "wrapped": true - }, - "required": true, - "description": null - } - }, - { - "key": "status", - "value": { - "description": "

        pet status in the store

        \n", - "enum": [ - "available", - "pending", - "sold" - ], - "type": "string" - } - }, - { - "key": "tags", - "value": { - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "Tag" - }, - "x-internal-ref-name": "Tag", - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "tag", - "wrapped": true - }, - "description": null, - "cTypeId": "Tag", - "cType": "Tag", - "cTypeIsArray": true - } - } - ], - "type": "object", - "xml": { - "name": "Pet" - }, - "x-internal-ref-name": "Pet", - "cTypeId": "Pet", - "cType": "Pet" - }, - { - "type": "object", - "xml": { - "name": "Category" - }, - "x-internal-ref-name": "Category", - "description": null, - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "x-internal-ref-name": "Category", - "x-internal-loop-ref-name": null - }, - "cTypeId": "Category", - "cType": "Category", - "cTypeIsArray": true, - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ] - }, - { - "items": { - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "Tag" - }, - "x-internal-ref-name": "Tag", - "x-internal-loop-ref-name": null - }, - "type": "array", - "xml": { - "name": "tag", - "wrapped": true - }, - "description": null, - "cTypeId": "Tag", - "cType": "Tag", - "cTypeIsArray": true, - "properties": [ - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "name", - "value": { - "type": "string", - "description": null - } - } - ], - "x-internal-ref-name": "Tag" - }, - { - "properties": [ - { - "key": "code", - "value": { - "format": "int32", - "type": "integer", - "description": null - } - }, - { - "key": "message", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "type", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "x-internal-ref-name": "ApiResponse", - "cTypeId": "ApiResponse", - "cType": "ApiResponse" - }, - { - "properties": [ - { - "key": "complete", - "value": { - "default": false, - "type": "boolean", - "description": null - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "petId", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "quantity", - "value": { - "format": "int32", - "type": "integer", - "description": null - } - }, - { - "key": "shipDate", - "value": { - "format": "date-time", - "type": "string", - "description": null - } - }, - { - "key": "status", - "value": { - "description": "

        Order Status

        \n", - "enum": [ - "placed", - "approved", - "delivered" - ], - "type": "string" - } - } - ], - "type": "object", - "xml": { - "name": "Order" - }, - "x-internal-ref-name": "Order", - "cTypeId": "Order", - "cType": "Order" - }, - { - "properties": [ - { - "key": "email", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "firstName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "id", - "value": { - "format": "int64", - "type": "integer", - "description": null - } - }, - { - "key": "lastName", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "password", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "phone", - "value": { - "type": "string", - "description": null - } - }, - { - "key": "userStatus", - "value": { - "description": "

        User Status

        \n", - "format": "int32", - "type": "integer" - } - }, - { - "key": "username", - "value": { - "type": "string", - "description": null - } - } - ], - "type": "object", - "xml": { - "name": "User" - }, - "x-internal-ref-name": "User", - "cTypeId": "User", - "cType": "User" - } - ], - "_disableToc": false, - "_disableNextArticle": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.html.view.verified.json deleted file mode 100644 index 8b2b3523dc8..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.html.view.verified.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "order": 100.0, - "items": [ - { - "name": "Pet Store API", - "href": "petstore.html", - "topicHref": "petstore.html", - "tocHref": null, - "level": 2.0, - "items": [], - "leaf": true - }, - { - "name": "Contacts API", - "href": "contacts.html", - "topicHref": "contacts.html", - "tocHref": null, - "level": 2.0, - "items": [], - "leaf": true - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "restapi/toc.md", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "../toc.html", - "_path": "restapi/toc.html", - "_rel": "../", - "_tocKey": "~/restapi/toc.md", - "_tocPath": "restapi/toc.html", - "_tocRel": "toc.html", - "topicHref": null, - "tocHref": null, - "name": null, - "level": 1.0, - "leaf": false, - "title": "Table of Content", - "_disableToc": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.json.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.json.view.verified.json deleted file mode 100644 index 80e0777fb60..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.json.view.verified.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "content": "{\"order\":100,\"items\":[{\"name\":\"Pet Store API\",\"href\":\"petstore.html\",\"topicHref\":\"petstore.html\"},{\"name\":\"Contacts API\",\"href\":\"contacts.html\",\"topicHref\":\"contacts.html\"}],\"pdf\":true,\"pdfTocPage\":true}" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.pdf.verified.json deleted file mode 100644 index f7594bc1aa9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.pdf.verified.json +++ /dev/null @@ -1,944 +0,0 @@ -{ - "NumberOfPages": 27, - "Pages": [ - { - "Number": 1, - "Text": "Table of ContentsPet Store API2Contacts API17", - "Links": [ - { - "Goto": { - "PageNumber": 2, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 17, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 2, - "Text": "2 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 14, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 3, - "Text": "3 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 14, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - }, - { - "Goto": { - "PageNumber": 14, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 4, - "Text": "4 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 14, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 5, - "Text": "5 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 14, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 6, - "Text": "6 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 15, - "Coordinates": { - "Left": 28, - "Top": 525.49969 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Coordinates": { - "Left": 28, - "Top": 525.49969 - } - } - } - ] - }, - { - "Number": 7, - "Text": "7 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 14, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 8, - "Text": "8 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 15, - "Coordinates": { - "Left": 28, - "Top": 361.24969 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Coordinates": { - "Left": 28, - "Top": 361.24969 - } - } - } - ] - }, - { - "Number": 9, - "Text": "9 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 15, - "Coordinates": { - "Left": 28, - "Top": 361.24969 - } - } - } - ] - }, - { - "Number": 10, - "Text": "10 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 15, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - } - ] - }, - { - "Number": 11, - "Text": "11 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 15, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - } - ] - }, - { - "Number": 12, - "Text": "12 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - } - ] - }, - { - "Number": 13, - "Text": "13 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 15, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - } - ] - }, - { - "Number": 14, - "Text": "14 / 27ParametersNameTypeDefaultNotes*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": 15, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - }, - { - "Goto": { - "PageNumber": 14, - "Coordinates": { - "Left": 28, - "Top": 109.999695 - } - } - }, - { - "Goto": { - "PageNumber": 15, - "Coordinates": { - "Left": 28, - "Top": 658.99969 - } - } - } - ] - }, - { - "Number": 15, - "Text": "15 / 27NameTypeNotesidinteger (int64)namestringTagNameTypeNotesidinteger (int64)namestringApiResponseNameTypeNotescodeinteger (int32)messagestringtypestringOrderNameTypeNotescompletebooleanidinteger (int64)petIdinteger (int64)quantityinteger (int32)shipDatestring (date-time)statusstringOrder StatusUser", - "Links": [] - }, - { - "Number": 16, - "Text": "16 / 27NameTypeNotesemailstringfirstNamestringidinteger (int64)lastNamestringpasswordstringphonestringuserStatusinteger (int32)User StatususernamestringSee AlsosSee other REST APIs:Contacts API", - "Links": [ - { - "Goto": { - "PageNumber": 17, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 17, - "Text": "17 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 18, - "Text": "18 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 19, - "Text": "19 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Goto": { - "PageNumber": 25, - "Coordinates": { - "Left": 28, - "Top": 296.75015 - } - } - } - ] - }, - { - "Number": 20, - "Text": "20 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 21, - "Text": "21 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 22, - "Text": "22 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 23, - "Text": "23 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 24, - "Text": "24 / 27| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1" - } - ] - }, - { - "Number": 25, - "Text": "25 / 27NameTypeDefaultNotes*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": 26, - "Text": "26 / 27NameTypeNotesdirSyncEnabledbooleandisplayNamestringfacsimileTelephoneNumberstringgivenNamestringjobTitlestringlastDirSyncTimestring (date-time)mailstringmailNicknamestringmobilestringphysicalDeliveryOfficeNamestringpostalCodestringprovisioningErrorsProvisioningError[]proxyAddressesarraysipProxyAddressstringstatestringstreetAddressstringsurnamestringtelephoneNumberstringthumbnailPhotostringProvisioningErrorNameTypeNoteserrorDetailstring", - "Links": [ - { - "Goto": { - "PageNumber": 26, - "Coordinates": { - "Left": 28, - "Top": 136.250183 - } - } - }, - { - "Goto": { - "PageNumber": 26, - "Coordinates": { - "Left": 28, - "Top": 136.250183 - } - } - } - ] - }, - { - "Number": 27, - "Text": "27 / 27NameTypeNotesresolvedbooleanserviceInstancestringtimestampstring (date-time)", - "Links": [] - } - ], - "Bookmarks": [ - { - "Title": "Pet Store API", - "Children": [], - "Destination": { - "PageNumber": 2, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Contacts API", - "Children": [], - "Destination": { - "PageNumber": 17, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.verified.json deleted file mode 100644 index 46d9c6eec23..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/toc.verified.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "order": 100, - "items": [ - { - "name": "Pet Store API", - "href": "petstore.html", - "topicHref": "petstore.html" - }, - { - "name": "Contacts API", - "href": "contacts.html", - "topicHref": "contacts.html" - } - ], - "pdf": true, - "pdfTocPage": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.html.view.verified.json deleted file mode 100644 index 37c679027e7..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.html.view.verified.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "items": [ - { - "name": "Home", - "href": "index.html", - "topicHref": "index.html", - "tocHref": null, - "level": 2.0, - "items": [], - "leaf": true - }, - { - "name": "Articles", - "href": "articles/docfx_getting_started.html", - "tocHref": "articles/toc.html", - "topicHref": "articles/docfx_getting_started.html", - "level": 2.0, - "items": [], - "leaf": true - }, - { - "name": "API Documentation", - "items": [ - { - "name": ".NET API", - "href": "api/BuildFromAssembly.html", - "tocHref": "api/toc.html", - "topicHref": "api/BuildFromAssembly.html", - "topicUid": "BuildFromAssembly", - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": ".NET API (markdown)", - "href": "md/BuildFromAssembly.html", - "tocHref": "md/toc.html", - "topicHref": "md/BuildFromAssembly.html", - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": ".NET API (apipage)", - "href": "apipage/BuildFromAssembly.html", - "tocHref": "apipage/toc.html", - "topicHref": "apipage/BuildFromAssembly.html", - "level": 3.0, - "items": [], - "leaf": true - }, - { - "name": "REST API", - "href": "restapi/petstore.html", - "tocHref": "restapi/toc.html", - "topicHref": "restapi/petstore.html", - "level": 3.0, - "items": [], - "leaf": true - } - ], - "topicHref": null, - "tocHref": null, - "level": 2.0 - } - ], - "_appName": "Seed", - "_appTitle": "docfx seed website", - "_enableSearch": true, - "pdf": true, - "pdfTocPage": true, - "_key": "toc.yml", - "_navKey": "~/toc.yml", - "_navPath": "toc.html", - "_navRel": "toc.html", - "_path": "toc.html", - "_rel": "", - "_tocKey": "~/toc.yml", - "_tocPath": "toc.html", - "_tocRel": "toc.html", - "topicHref": null, - "tocHref": null, - "name": null, - "level": 1.0, - "leaf": false, - "title": "Table of Content", - "_disableToc": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.json.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.json.view.verified.json deleted file mode 100644 index 0342d0a6bd9..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.json.view.verified.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "content": "{\"items\":[{\"name\":\"Home\",\"href\":\"index.html\",\"topicHref\":\"index.html\"},{\"name\":\"Articles\",\"href\":\"articles/docfx_getting_started.html\",\"tocHref\":\"articles/toc.html\",\"topicHref\":\"articles/docfx_getting_started.html\"},{\"name\":\"API Documentation\",\"items\":[{\"name\":\".NET API\",\"href\":\"api/BuildFromAssembly.html\",\"tocHref\":\"api/toc.html\",\"topicHref\":\"api/BuildFromAssembly.html\",\"topicUid\":\"BuildFromAssembly\"},{\"name\":\".NET API (markdown)\",\"href\":\"md/BuildFromAssembly.html\",\"tocHref\":\"md/toc.html\",\"topicHref\":\"md/BuildFromAssembly.html\"},{\"name\":\".NET API (apipage)\",\"href\":\"apipage/BuildFromAssembly.html\",\"tocHref\":\"apipage/toc.html\",\"topicHref\":\"apipage/BuildFromAssembly.html\"},{\"name\":\"REST API\",\"href\":\"restapi/petstore.html\",\"tocHref\":\"restapi/toc.html\",\"topicHref\":\"restapi/petstore.html\"}]}],\"pdf\":true,\"pdfTocPage\":true}" -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.pdf.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.pdf.verified.json deleted file mode 100644 index 2682eca1b66..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.pdf.verified.json +++ /dev/null @@ -1,855 +0,0 @@ -{ - "NumberOfPages": 22, - "Pages": [ - { - "Number": 1, - "Text": "Table of ContentsHome2Articles3API Documentation.NET API5.NET API (markdown)6.NET API (apipage)7REST API8", - "Links": [ - { - "Goto": { - "PageNumber": 2, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Goto": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] - }, - { - "Number": 2, - "Text": "2 / 22docfx-seedDescriptionThis is a sample docfx documentation project. It contains .NET source code and markdownfiles. docfx.json is the configuration file for running docfx. docfx will generate a staticwebsite as similar to http://docascode.github.io/docfx-seed.How to runUnder WindowsDownload and unzip docfx.zip to run docfx.exe directly!Run docfx under current repo! Website will be generated under _site folder.Run any web hosting tool to host _site folder, e.g. docfx serve _site.Cross platform and use dnxAs a prerequisite, you will need to install DNVM and DNX. ###Quick Startdnvm upgrade to get the latest dnvm.Add feed https://www.myget.org/F/aspnetrelease/api/v2/ to Nuget.configFor Windows, the nuget config file is %AppData%\\NuGet\\NuGet.config.For Linux/OSX, the nuget config file is ~/.config/NuGet/NuGet.config.dnu commands install docfx to install docfx as a commandRun docfx under current repo! Website will be generated under _site folder.Run any web hosting tool to host _site folder, e.g. docfx serve _site.Further information about docfxdocfx is a tool to generate documentation towards .NET source code and markdown files.Please refer to docfx to get start. The docfx website itself is generated by docfx!", - "Links": [ - { - "Uri": "http://docascode.github.io/docfx-seed/index.html" - }, - { - "Uri": "https://github.com/dotnet/docfx/releases/latest" - }, - { - "Uri": "http://docs.asp.net/en/latest/getting-started/installing-on-windows.html#install-the-net-version-manager-dnvm" - }, - { - "Uri": "http://docs.asp.net/en/latest/getting-started/installing-on-windows.html#install-the-net-execution-environment-dnx" - }, - { - "Uri": "https://www.myget.org/F/aspnetrelease/api/v2/" - }, - { - "Uri": "http://dotnet.github.io/docfx/tutorial/docfx_getting_started.html" - } - ] - }, - { - "Number": 3, - "NumberOfImages": 1, - "Text": "3 / 22Getting Started with docfxGetting StartedThis is a seed.", - "Links": [ - { - "Uri": "" - }, - { - "Uri": "" - } - ] - }, - { - "Number": 4, - "Text": "4 / 22docfx 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 / 22ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", - "Links": [ - { - "Uri": "" - }, - { - "Uri": "" - } - ] - }, - { - "Number": 6, - "Text": "6 / 22Namespace BuildFromAssemblyClassesClass1This is a test class.StructsIssue5432", - "Links": [ - { - "Uri": "" - }, - { - "Uri": "" - } - ] - }, - { - "Number": 7, - "Text": "7 / 22ClassesClass1This is a test class.StructsIssue5432Namespace BuildFromAssembly", - "Links": [ - { - "Uri": "" - }, - { - "Uri": "" - } - ] - }, - { - "Number": 8, - "Text": "8 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 20, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 9, - "Text": "9 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 20, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 10, - "Text": "10 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 20, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 11, - "Text": "11 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 20, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 12, - "Text": "12 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 21, - "Coordinates": { - "Left": 28, - "Top": 525.49969 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Coordinates": { - "Left": 28, - "Top": 525.49969 - } - } - } - ] - }, - { - "Number": 13, - "Text": "13 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 20, - "Coordinates": { - "Left": 28, - "Top": 378.49969 - } - } - } - ] - }, - { - "Number": 14, - "Text": "14 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 21, - "Coordinates": { - "Left": 28, - "Top": 361.24969 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Coordinates": { - "Left": 28, - "Top": 361.24969 - } - } - } - ] - }, - { - "Number": 15, - "Text": "15 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 21, - "Coordinates": { - "Left": 28, - "Top": 361.24969 - } - } - } - ] - }, - { - "Number": 16, - "Text": "16 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 21, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - } - ] - }, - { - "Number": 17, - "Text": "17 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 21, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - } - ] - }, - { - "Number": 18, - "Text": "18 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - } - ] - }, - { - "Number": 19, - "Text": "19 / 22| 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" - }, - { - "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" - }, - { - "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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%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" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Uri": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1" - }, - { - "Goto": { - "PageNumber": 21, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - } - ] - }, - { - "Number": 20, - "Text": "20 / 22ParametersNameTypeDefaultNotes*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": 21, - "Coordinates": { - "Left": 28, - "Top": 92.749695 - } - } - }, - { - "Goto": { - "PageNumber": 20, - "Coordinates": { - "Left": 28, - "Top": 109.999695 - } - } - }, - { - "Goto": { - "PageNumber": 21, - "Coordinates": { - "Left": 28, - "Top": 658.99969 - } - } - } - ] - }, - { - "Number": 21, - "Text": "21 / 22NameTypeNotesidinteger (int64)namestringTagNameTypeNotesidinteger (int64)namestringApiResponseNameTypeNotescodeinteger (int32)messagestringtypestringOrderNameTypeNotescompletebooleanidinteger (int64)petIdinteger (int64)quantityinteger (int32)shipDatestring (date-time)statusstringOrder StatusUser", - "Links": [] - }, - { - "Number": 22, - "Text": "22 / 22NameTypeNotesemailstringfirstNamestringidinteger (int64)lastNamestringpasswordstringphonestringuserStatusinteger (int32)User StatususernamestringSee AlsosSee other REST APIs:Contacts API", - "Links": [ - { - "Uri": "" - } - ] - } - ], - "Bookmarks": [ - { - "Title": "Home", - "Children": [], - "Destination": { - "PageNumber": 2, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "Articles", - "Children": [], - "Destination": { - "PageNumber": 3, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "API Documentation", - "Children": [ - { - "Title": ".NET API", - "Children": [], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": ".NET API (markdown)", - "Children": [], - "Destination": { - "PageNumber": 6, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": ".NET API (apipage)", - "Children": [], - "Destination": { - "PageNumber": 7, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - }, - { - "Title": "REST API", - "Children": [], - "Destination": { - "PageNumber": 8, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ], - "Destination": { - "PageNumber": 5, - "Type": 2, - "Coordinates": { - "Top": 0 - } - } - } - ] -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.verified.json deleted file mode 100644 index fefc888b153..00000000000 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/toc.verified.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "items": [ - { - "name": "Home", - "href": "index.html", - "topicHref": "index.html" - }, - { - "name": "Articles", - "href": "articles/docfx_getting_started.html", - "tocHref": "articles/toc.html", - "topicHref": "articles/docfx_getting_started.html" - }, - { - "name": "API Documentation", - "items": [ - { - "name": ".NET API", - "href": "api/BuildFromAssembly.html", - "tocHref": "api/toc.html", - "topicHref": "api/BuildFromAssembly.html", - "topicUid": "BuildFromAssembly" - }, - { - "name": ".NET API (markdown)", - "href": "md/BuildFromAssembly.html", - "tocHref": "md/toc.html", - "topicHref": "md/BuildFromAssembly.html" - }, - { - "name": ".NET API (apipage)", - "href": "apipage/BuildFromAssembly.html", - "tocHref": "apipage/toc.html", - "topicHref": "apipage/BuildFromAssembly.html" - }, - { - "name": "REST API", - "href": "restapi/petstore.html", - "tocHref": "restapi/toc.html", - "topicHref": "restapi/petstore.html" - } - ] - } - ], - "pdf": true, - "pdfTocPage": true -} \ No newline at end of file diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/xrefmap.verified.yml b/test/docfx.Snapshot.Tests/SamplesTest.Seed/xrefmap.verified.yml index 6a321df6afb..3e36c10985f 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/xrefmap.verified.yml +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/xrefmap.verified.yml @@ -3,19 +3,19 @@ sorted: true references: - uid: BuildFromAssembly name: BuildFromAssembly - href: api/BuildFromAssembly.html + href: api/BuildFromAssembly.yml commentId: N:BuildFromAssembly fullName: BuildFromAssembly nameWithType: BuildFromAssembly - uid: BuildFromAssembly.Class1 name: Class1 - href: api/BuildFromAssembly.Class1.html + href: api/BuildFromAssembly.Class1.yml commentId: T:BuildFromAssembly.Class1 fullName: BuildFromAssembly.Class1 nameWithType: Class1 - uid: BuildFromAssembly.Class1.#ctor name: Class1() - href: api/BuildFromAssembly.Class1.html#BuildFromAssembly_Class1__ctor + href: api/BuildFromAssembly.Class1.yml commentId: M:BuildFromAssembly.Class1.#ctor name.vb: New() fullName: BuildFromAssembly.Class1.Class1() @@ -24,7 +24,7 @@ references: nameWithType.vb: Class1.New() - uid: BuildFromAssembly.Class1.#ctor* name: Class1 - href: api/BuildFromAssembly.Class1.html#BuildFromAssembly_Class1__ctor_ + href: api/BuildFromAssembly.Class1.yml commentId: Overload:BuildFromAssembly.Class1.#ctor name.vb: New fullName: BuildFromAssembly.Class1.Class1 @@ -33,49 +33,49 @@ references: nameWithType.vb: Class1.New - uid: BuildFromAssembly.Class1.HelloWorld name: HelloWorld() - href: api/BuildFromAssembly.Class1.html#BuildFromAssembly_Class1_HelloWorld + href: api/BuildFromAssembly.Class1.yml commentId: M:BuildFromAssembly.Class1.HelloWorld fullName: BuildFromAssembly.Class1.HelloWorld() nameWithType: Class1.HelloWorld() - uid: BuildFromAssembly.Class1.HelloWorld* name: HelloWorld - href: api/BuildFromAssembly.Class1.html#BuildFromAssembly_Class1_HelloWorld_ + href: api/BuildFromAssembly.Class1.yml commentId: Overload:BuildFromAssembly.Class1.HelloWorld fullName: BuildFromAssembly.Class1.HelloWorld nameWithType: Class1.HelloWorld - uid: BuildFromAssembly.Issue5432 name: Issue5432 - href: api/BuildFromAssembly.Issue5432.html + href: api/BuildFromAssembly.Issue5432.yml commentId: T:BuildFromAssembly.Issue5432 fullName: BuildFromAssembly.Issue5432 nameWithType: Issue5432 - uid: BuildFromAssembly.Issue5432.Name name: Name - href: api/BuildFromAssembly.Issue5432.html#BuildFromAssembly_Issue5432_Name + href: api/BuildFromAssembly.Issue5432.yml commentId: P:BuildFromAssembly.Issue5432.Name fullName: BuildFromAssembly.Issue5432.Name nameWithType: Issue5432.Name - uid: BuildFromAssembly.Issue5432.Name* name: Name - href: api/BuildFromAssembly.Issue5432.html#BuildFromAssembly_Issue5432_Name_ + href: api/BuildFromAssembly.Issue5432.yml commentId: Overload:BuildFromAssembly.Issue5432.Name fullName: BuildFromAssembly.Issue5432.Name nameWithType: Issue5432.Name - uid: BuildFromCSharpSourceCode name: BuildFromCSharpSourceCode - href: api/BuildFromCSharpSourceCode.html + href: api/BuildFromCSharpSourceCode.yml commentId: N:BuildFromCSharpSourceCode fullName: BuildFromCSharpSourceCode nameWithType: BuildFromCSharpSourceCode - uid: BuildFromCSharpSourceCode.CSharp name: CSharp - href: api/BuildFromCSharpSourceCode.CSharp.html + href: api/BuildFromCSharpSourceCode.CSharp.yml commentId: T:BuildFromCSharpSourceCode.CSharp fullName: BuildFromCSharpSourceCode.CSharp nameWithType: CSharp - uid: BuildFromCSharpSourceCode.CSharp.Main(System.String[]) name: Main(string[]) - href: api/BuildFromCSharpSourceCode.CSharp.html#BuildFromCSharpSourceCode_CSharp_Main_System_String___ + href: api/BuildFromCSharpSourceCode.CSharp.yml commentId: M:BuildFromCSharpSourceCode.CSharp.Main(System.String[]) name.vb: Main(String()) fullName: BuildFromCSharpSourceCode.CSharp.Main(string[]) @@ -84,39 +84,39 @@ references: nameWithType.vb: CSharp.Main(String()) - uid: BuildFromCSharpSourceCode.CSharp.Main* name: Main - href: api/BuildFromCSharpSourceCode.CSharp.html#BuildFromCSharpSourceCode_CSharp_Main_ + href: api/BuildFromCSharpSourceCode.CSharp.yml commentId: Overload:BuildFromCSharpSourceCode.CSharp.Main isSpec: "True" fullName: BuildFromCSharpSourceCode.CSharp.Main nameWithType: CSharp.Main - uid: BuildFromProject name: BuildFromProject - href: api/BuildFromProject.html + href: api/BuildFromProject.yml commentId: N:BuildFromProject fullName: BuildFromProject nameWithType: BuildFromProject - uid: BuildFromProject.Class1 name: Class1 - href: api/BuildFromProject.Class1.html + href: api/BuildFromProject.Class1.yml commentId: T:BuildFromProject.Class1 fullName: BuildFromProject.Class1 nameWithType: Class1 - uid: BuildFromProject.Class1.IIssue8948 name: Class1.IIssue8948 - href: api/BuildFromProject.Class1.IIssue8948.html + href: api/BuildFromProject.Class1.IIssue8948.yml commentId: T:BuildFromProject.Class1.IIssue8948 fullName: BuildFromProject.Class1.IIssue8948 nameWithType: Class1.IIssue8948 - uid: BuildFromProject.Class1.IIssue8948.DoNothing* name: DoNothing - href: api/BuildFromProject.Class1.IIssue8948.html#BuildFromProject_Class1_IIssue8948_DoNothing_ + href: api/BuildFromProject.Class1.IIssue8948.yml commentId: Overload:BuildFromProject.Class1.IIssue8948.DoNothing isSpec: "True" fullName: BuildFromProject.Class1.IIssue8948.DoNothing nameWithType: Class1.IIssue8948.DoNothing - uid: BuildFromProject.Class1.IIssue8948.DoNothing``1 name: DoNothing() - href: api/BuildFromProject.Class1.IIssue8948.html#BuildFromProject_Class1_IIssue8948_DoNothing__1 + href: api/BuildFromProject.Class1.IIssue8948.yml commentId: M:BuildFromProject.Class1.IIssue8948.DoNothing``1 name.vb: DoNothing(Of T)() fullName: BuildFromProject.Class1.IIssue8948.DoNothing() @@ -125,104 +125,104 @@ references: nameWithType.vb: Class1.IIssue8948.DoNothing(Of T)() - uid: BuildFromProject.Class1.Issue1651 name: Issue1651() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue1651 + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.Issue1651 fullName: BuildFromProject.Class1.Issue1651() nameWithType: Class1.Issue1651() - uid: BuildFromProject.Class1.Issue1651* name: Issue1651 - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue1651_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.Issue1651 isSpec: "True" fullName: BuildFromProject.Class1.Issue1651 nameWithType: Class1.Issue1651 - uid: BuildFromProject.Class1.Issue1887 name: Issue1887() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue1887 + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.Issue1887 fullName: BuildFromProject.Class1.Issue1887() nameWithType: Class1.Issue1887() - uid: BuildFromProject.Class1.Issue1887* name: Issue1887 - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue1887_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.Issue1887 isSpec: "True" fullName: BuildFromProject.Class1.Issue1887 nameWithType: Class1.Issue1887 - uid: BuildFromProject.Class1.Issue2623 name: Issue2623() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue2623 + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.Issue2623 fullName: BuildFromProject.Class1.Issue2623() nameWithType: Class1.Issue2623() - uid: BuildFromProject.Class1.Issue2623* name: Issue2623 - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue2623_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.Issue2623 isSpec: "True" fullName: BuildFromProject.Class1.Issue2623 nameWithType: Class1.Issue2623 - uid: BuildFromProject.Class1.Issue2723 name: Issue2723() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue2723 + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.Issue2723 fullName: BuildFromProject.Class1.Issue2723() nameWithType: Class1.Issue2723() - uid: BuildFromProject.Class1.Issue2723* name: Issue2723 - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue2723_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.Issue2723 isSpec: "True" fullName: BuildFromProject.Class1.Issue2723 nameWithType: Class1.Issue2723 - uid: BuildFromProject.Class1.Issue4017 name: Issue4017() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue4017 + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.Issue4017 fullName: BuildFromProject.Class1.Issue4017() nameWithType: Class1.Issue4017() - uid: BuildFromProject.Class1.Issue4017* name: Issue4017 - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue4017_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.Issue4017 isSpec: "True" fullName: BuildFromProject.Class1.Issue4017 nameWithType: Class1.Issue4017 - uid: BuildFromProject.Class1.Issue4392 name: Issue4392() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue4392 + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.Issue4392 fullName: BuildFromProject.Class1.Issue4392() nameWithType: Class1.Issue4392() - uid: BuildFromProject.Class1.Issue4392* name: Issue4392 - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue4392_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.Issue4392 isSpec: "True" fullName: BuildFromProject.Class1.Issue4392 nameWithType: Class1.Issue4392 - uid: BuildFromProject.Class1.Issue7484 name: Issue7484() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue7484 + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.Issue7484 fullName: BuildFromProject.Class1.Issue7484() nameWithType: Class1.Issue7484() - uid: BuildFromProject.Class1.Issue7484* name: Issue7484 - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue7484_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.Issue7484 isSpec: "True" fullName: BuildFromProject.Class1.Issue7484 nameWithType: Class1.Issue7484 - uid: BuildFromProject.Class1.Issue8665 name: Class1.Issue8665 - href: api/BuildFromProject.Class1.Issue8665.html + href: api/BuildFromProject.Class1.Issue8665.yml commentId: T:BuildFromProject.Class1.Issue8665 fullName: BuildFromProject.Class1.Issue8665 nameWithType: Class1.Issue8665 - uid: BuildFromProject.Class1.Issue8665.#ctor name: Issue8665() - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665__ctor + href: api/BuildFromProject.Class1.Issue8665.yml commentId: M:BuildFromProject.Class1.Issue8665.#ctor name.vb: New() fullName: BuildFromProject.Class1.Issue8665.Issue8665() @@ -231,7 +231,7 @@ references: nameWithType.vb: Class1.Issue8665.New() - uid: BuildFromProject.Class1.Issue8665.#ctor(System.Int32) name: Issue8665(int) - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665__ctor_System_Int32_ + href: api/BuildFromProject.Class1.Issue8665.yml commentId: M:BuildFromProject.Class1.Issue8665.#ctor(System.Int32) name.vb: New(Integer) fullName: BuildFromProject.Class1.Issue8665.Issue8665(int) @@ -240,7 +240,7 @@ references: nameWithType.vb: Class1.Issue8665.New(Integer) - uid: BuildFromProject.Class1.Issue8665.#ctor(System.Int32,System.Char) name: Issue8665(int, char) - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665__ctor_System_Int32_System_Char_ + href: api/BuildFromProject.Class1.Issue8665.yml commentId: M:BuildFromProject.Class1.Issue8665.#ctor(System.Int32,System.Char) name.vb: New(Integer, Char) fullName: BuildFromProject.Class1.Issue8665.Issue8665(int, char) @@ -249,7 +249,7 @@ references: nameWithType.vb: Class1.Issue8665.New(Integer, Char) - uid: BuildFromProject.Class1.Issue8665.#ctor(System.Int32,System.Char,System.String) name: Issue8665(int, char, string) - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665__ctor_System_Int32_System_Char_System_String_ + href: api/BuildFromProject.Class1.Issue8665.yml commentId: M:BuildFromProject.Class1.Issue8665.#ctor(System.Int32,System.Char,System.String) name.vb: New(Integer, Char, String) fullName: BuildFromProject.Class1.Issue8665.Issue8665(int, char, string) @@ -258,7 +258,7 @@ references: nameWithType.vb: Class1.Issue8665.New(Integer, Char, String) - uid: BuildFromProject.Class1.Issue8665.#ctor* name: Issue8665 - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665__ctor_ + href: api/BuildFromProject.Class1.Issue8665.yml commentId: Overload:BuildFromProject.Class1.Issue8665.#ctor isSpec: "True" name.vb: New @@ -268,52 +268,52 @@ references: nameWithType.vb: Class1.Issue8665.New - uid: BuildFromProject.Class1.Issue8665.Bar name: Bar - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665_Bar + href: api/BuildFromProject.Class1.Issue8665.yml commentId: P:BuildFromProject.Class1.Issue8665.Bar fullName: BuildFromProject.Class1.Issue8665.Bar nameWithType: Class1.Issue8665.Bar - uid: BuildFromProject.Class1.Issue8665.Bar* name: Bar - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665_Bar_ + href: api/BuildFromProject.Class1.Issue8665.yml commentId: Overload:BuildFromProject.Class1.Issue8665.Bar isSpec: "True" fullName: BuildFromProject.Class1.Issue8665.Bar nameWithType: Class1.Issue8665.Bar - uid: BuildFromProject.Class1.Issue8665.Baz name: Baz - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665_Baz + href: api/BuildFromProject.Class1.Issue8665.yml commentId: P:BuildFromProject.Class1.Issue8665.Baz fullName: BuildFromProject.Class1.Issue8665.Baz nameWithType: Class1.Issue8665.Baz - uid: BuildFromProject.Class1.Issue8665.Baz* name: Baz - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665_Baz_ + href: api/BuildFromProject.Class1.Issue8665.yml commentId: Overload:BuildFromProject.Class1.Issue8665.Baz isSpec: "True" fullName: BuildFromProject.Class1.Issue8665.Baz nameWithType: Class1.Issue8665.Baz - uid: BuildFromProject.Class1.Issue8665.Foo name: Foo - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665_Foo + href: api/BuildFromProject.Class1.Issue8665.yml commentId: P:BuildFromProject.Class1.Issue8665.Foo fullName: BuildFromProject.Class1.Issue8665.Foo nameWithType: Class1.Issue8665.Foo - uid: BuildFromProject.Class1.Issue8665.Foo* name: Foo - href: api/BuildFromProject.Class1.Issue8665.html#BuildFromProject_Class1_Issue8665_Foo_ + href: api/BuildFromProject.Class1.Issue8665.yml commentId: Overload:BuildFromProject.Class1.Issue8665.Foo isSpec: "True" fullName: BuildFromProject.Class1.Issue8665.Foo nameWithType: Class1.Issue8665.Foo - uid: BuildFromProject.Class1.Issue8696Attribute name: Class1.Issue8696Attribute - href: api/BuildFromProject.Class1.Issue8696Attribute.html + href: api/BuildFromProject.Class1.Issue8696Attribute.yml commentId: T:BuildFromProject.Class1.Issue8696Attribute fullName: BuildFromProject.Class1.Issue8696Attribute nameWithType: Class1.Issue8696Attribute - uid: BuildFromProject.Class1.Issue8696Attribute.#ctor(System.String,System.Int32,System.Int32,System.String[],System.Boolean,System.Type) name: Issue8696Attribute(string?, int, int, string[]?, bool, Type?) - href: api/BuildFromProject.Class1.Issue8696Attribute.html#BuildFromProject_Class1_Issue8696Attribute__ctor_System_String_System_Int32_System_Int32_System_String___System_Boolean_System_Type_ + href: api/BuildFromProject.Class1.Issue8696Attribute.yml commentId: M:BuildFromProject.Class1.Issue8696Attribute.#ctor(System.String,System.Int32,System.Int32,System.String[],System.Boolean,System.Type) name.vb: New(String, Integer, Integer, String(), Boolean, Type) fullName: BuildFromProject.Class1.Issue8696Attribute.Issue8696Attribute(string?, int, int, string[]?, bool, System.Type?) @@ -322,7 +322,7 @@ references: nameWithType.vb: Class1.Issue8696Attribute.New(String, Integer, Integer, String(), Boolean, Type) - uid: BuildFromProject.Class1.Issue8696Attribute.#ctor* name: Issue8696Attribute - href: api/BuildFromProject.Class1.Issue8696Attribute.html#BuildFromProject_Class1_Issue8696Attribute__ctor_ + href: api/BuildFromProject.Class1.Issue8696Attribute.yml commentId: Overload:BuildFromProject.Class1.Issue8696Attribute.#ctor isSpec: "True" name.vb: New @@ -332,14 +332,14 @@ references: nameWithType.vb: Class1.Issue8696Attribute.New - uid: BuildFromProject.Class1.Issue8764* name: Issue8764 - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue8764_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.Issue8764 isSpec: "True" fullName: BuildFromProject.Class1.Issue8764 nameWithType: Class1.Issue8764 - uid: BuildFromProject.Class1.Issue8764``1 name: Issue8764() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue8764__1 + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.Issue8764``1 name.vb: Issue8764(Of T)() fullName: BuildFromProject.Class1.Issue8764() @@ -348,20 +348,20 @@ references: nameWithType.vb: Class1.Issue8764(Of T)() - uid: BuildFromProject.Class1.Issue8948 name: Class1.Issue8948 - href: api/BuildFromProject.Class1.Issue8948.html + href: api/BuildFromProject.Class1.Issue8948.yml commentId: T:BuildFromProject.Class1.Issue8948 fullName: BuildFromProject.Class1.Issue8948 nameWithType: Class1.Issue8948 - uid: BuildFromProject.Class1.Issue8948.DoNothing* name: DoNothing - href: api/BuildFromProject.Class1.Issue8948.html#BuildFromProject_Class1_Issue8948_DoNothing_ + href: api/BuildFromProject.Class1.Issue8948.yml commentId: Overload:BuildFromProject.Class1.Issue8948.DoNothing isSpec: "True" fullName: BuildFromProject.Class1.Issue8948.DoNothing nameWithType: Class1.Issue8948.DoNothing - uid: BuildFromProject.Class1.Issue8948.DoNothing``1 name: DoNothing() - href: api/BuildFromProject.Class1.Issue8948.html#BuildFromProject_Class1_Issue8948_DoNothing__1 + href: api/BuildFromProject.Class1.Issue8948.yml commentId: M:BuildFromProject.Class1.Issue8948.DoNothing``1 name.vb: DoNothing(Of T)() fullName: BuildFromProject.Class1.Issue8948.DoNothing() @@ -370,57 +370,57 @@ references: nameWithType.vb: Class1.Issue8948.DoNothing(Of T)() - uid: BuildFromProject.Class1.Issue896 name: Issue896() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue896 + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.Issue896 fullName: BuildFromProject.Class1.Issue896() nameWithType: Class1.Issue896() - uid: BuildFromProject.Class1.Issue896* name: Issue896 - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue896_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.Issue896 isSpec: "True" fullName: BuildFromProject.Class1.Issue896 nameWithType: Class1.Issue896 - uid: BuildFromProject.Class1.Issue9216 name: Issue9216() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue9216 + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.Issue9216 fullName: BuildFromProject.Class1.Issue9216() nameWithType: Class1.Issue9216() - uid: BuildFromProject.Class1.Issue9216* name: Issue9216 - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_Issue9216_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.Issue9216 isSpec: "True" fullName: BuildFromProject.Class1.Issue9216 nameWithType: Class1.Issue9216 - uid: BuildFromProject.Class1.Issue9260 name: Class1.Issue9260 - href: api/BuildFromProject.Class1.Issue9260.html + href: api/BuildFromProject.Class1.Issue9260.yml commentId: T:BuildFromProject.Class1.Issue9260 fullName: BuildFromProject.Class1.Issue9260 nameWithType: Class1.Issue9260 - uid: BuildFromProject.Class1.Issue9260.OldAndUnusedValue name: OldAndUnusedValue - href: api/BuildFromProject.Class1.Issue9260.html#BuildFromProject_Class1_Issue9260_OldAndUnusedValue + href: api/BuildFromProject.Class1.Issue9260.yml commentId: F:BuildFromProject.Class1.Issue9260.OldAndUnusedValue fullName: BuildFromProject.Class1.Issue9260.OldAndUnusedValue nameWithType: Class1.Issue9260.OldAndUnusedValue - uid: BuildFromProject.Class1.Issue9260.OldAndUnusedValue2 name: OldAndUnusedValue2 - href: api/BuildFromProject.Class1.Issue9260.html#BuildFromProject_Class1_Issue9260_OldAndUnusedValue2 + href: api/BuildFromProject.Class1.Issue9260.yml commentId: F:BuildFromProject.Class1.Issue9260.OldAndUnusedValue2 fullName: BuildFromProject.Class1.Issue9260.OldAndUnusedValue2 nameWithType: Class1.Issue9260.OldAndUnusedValue2 - uid: BuildFromProject.Class1.Issue9260.Value name: Value - href: api/BuildFromProject.Class1.Issue9260.html#BuildFromProject_Class1_Issue9260_Value + href: api/BuildFromProject.Class1.Issue9260.yml commentId: F:BuildFromProject.Class1.Issue9260.Value fullName: BuildFromProject.Class1.Issue9260.Value nameWithType: Class1.Issue9260.Value - uid: BuildFromProject.Class1.Test`1 name: Class1.Test - href: api/BuildFromProject.Class1.Test-1.html + href: api/BuildFromProject.Class1.Test-1.yml commentId: T:BuildFromProject.Class1.Test`1 name.vb: Class1.Test(Of T) fullName: BuildFromProject.Class1.Test @@ -429,26 +429,26 @@ references: nameWithType.vb: Class1.Test(Of T) - uid: BuildFromProject.Class1.XmlCommentIncludeTag name: XmlCommentIncludeTag() - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_XmlCommentIncludeTag + href: api/BuildFromProject.Class1.yml commentId: M:BuildFromProject.Class1.XmlCommentIncludeTag fullName: BuildFromProject.Class1.XmlCommentIncludeTag() nameWithType: Class1.XmlCommentIncludeTag() - uid: BuildFromProject.Class1.XmlCommentIncludeTag* name: XmlCommentIncludeTag - href: api/BuildFromProject.Class1.html#BuildFromProject_Class1_XmlCommentIncludeTag_ + href: api/BuildFromProject.Class1.yml commentId: Overload:BuildFromProject.Class1.XmlCommentIncludeTag isSpec: "True" fullName: BuildFromProject.Class1.XmlCommentIncludeTag nameWithType: Class1.XmlCommentIncludeTag - uid: BuildFromProject.Dog name: Dog - href: api/BuildFromProject.Dog.html + href: api/BuildFromProject.Dog.yml commentId: T:BuildFromProject.Dog fullName: BuildFromProject.Dog nameWithType: Dog - uid: BuildFromProject.Dog.#ctor(System.String,System.Int32) name: Dog(string, int) - href: api/BuildFromProject.Dog.html#BuildFromProject_Dog__ctor_System_String_System_Int32_ + href: api/BuildFromProject.Dog.yml commentId: M:BuildFromProject.Dog.#ctor(System.String,System.Int32) name.vb: New(String, Integer) fullName: BuildFromProject.Dog.Dog(string, int) @@ -457,7 +457,7 @@ references: nameWithType.vb: Dog.New(String, Integer) - uid: BuildFromProject.Dog.#ctor* name: Dog - href: api/BuildFromProject.Dog.html#BuildFromProject_Dog__ctor_ + href: api/BuildFromProject.Dog.yml commentId: Overload:BuildFromProject.Dog.#ctor isSpec: "True" name.vb: New @@ -467,77 +467,77 @@ references: nameWithType.vb: Dog.New - uid: BuildFromProject.Dog.Age name: Age - href: api/BuildFromProject.Dog.html#BuildFromProject_Dog_Age + href: api/BuildFromProject.Dog.yml commentId: P:BuildFromProject.Dog.Age fullName: BuildFromProject.Dog.Age nameWithType: Dog.Age - uid: BuildFromProject.Dog.Age* name: Age - href: api/BuildFromProject.Dog.html#BuildFromProject_Dog_Age_ + href: api/BuildFromProject.Dog.yml commentId: Overload:BuildFromProject.Dog.Age isSpec: "True" fullName: BuildFromProject.Dog.Age nameWithType: Dog.Age - uid: BuildFromProject.Dog.Name name: Name - href: api/BuildFromProject.Dog.html#BuildFromProject_Dog_Name + href: api/BuildFromProject.Dog.yml commentId: P:BuildFromProject.Dog.Name fullName: BuildFromProject.Dog.Name nameWithType: Dog.Name - uid: BuildFromProject.Dog.Name* name: Name - href: api/BuildFromProject.Dog.html#BuildFromProject_Dog_Name_ + href: api/BuildFromProject.Dog.yml commentId: Overload:BuildFromProject.Dog.Name isSpec: "True" fullName: BuildFromProject.Dog.Name nameWithType: Dog.Name - uid: BuildFromProject.IInheritdoc name: IInheritdoc - href: api/BuildFromProject.IInheritdoc.html + href: api/BuildFromProject.IInheritdoc.yml commentId: T:BuildFromProject.IInheritdoc fullName: BuildFromProject.IInheritdoc nameWithType: IInheritdoc - uid: BuildFromProject.IInheritdoc.Issue7629 name: Issue7629() - href: api/BuildFromProject.IInheritdoc.html#BuildFromProject_IInheritdoc_Issue7629 + href: api/BuildFromProject.IInheritdoc.yml commentId: M:BuildFromProject.IInheritdoc.Issue7629 fullName: BuildFromProject.IInheritdoc.Issue7629() nameWithType: IInheritdoc.Issue7629() - uid: BuildFromProject.IInheritdoc.Issue7629* name: Issue7629 - href: api/BuildFromProject.IInheritdoc.html#BuildFromProject_IInheritdoc_Issue7629_ + href: api/BuildFromProject.IInheritdoc.yml commentId: Overload:BuildFromProject.IInheritdoc.Issue7629 isSpec: "True" fullName: BuildFromProject.IInheritdoc.Issue7629 nameWithType: IInheritdoc.Issue7629 - uid: BuildFromProject.Inheritdoc name: Inheritdoc - href: api/BuildFromProject.Inheritdoc.html + href: api/BuildFromProject.Inheritdoc.yml commentId: T:BuildFromProject.Inheritdoc fullName: BuildFromProject.Inheritdoc nameWithType: Inheritdoc - uid: BuildFromProject.Inheritdoc.Dispose name: Dispose() - href: api/BuildFromProject.Inheritdoc.html#BuildFromProject_Inheritdoc_Dispose + href: api/BuildFromProject.Inheritdoc.yml commentId: M:BuildFromProject.Inheritdoc.Dispose fullName: BuildFromProject.Inheritdoc.Dispose() nameWithType: Inheritdoc.Dispose() - uid: BuildFromProject.Inheritdoc.Dispose* name: Dispose - href: api/BuildFromProject.Inheritdoc.html#BuildFromProject_Inheritdoc_Dispose_ + href: api/BuildFromProject.Inheritdoc.yml commentId: Overload:BuildFromProject.Inheritdoc.Dispose isSpec: "True" fullName: BuildFromProject.Inheritdoc.Dispose nameWithType: Inheritdoc.Dispose - uid: BuildFromProject.Inheritdoc.Issue6366 name: Inheritdoc.Issue6366 - href: api/BuildFromProject.Inheritdoc.Issue6366.html + href: api/BuildFromProject.Inheritdoc.Issue6366.yml commentId: T:BuildFromProject.Inheritdoc.Issue6366 fullName: BuildFromProject.Inheritdoc.Issue6366 nameWithType: Inheritdoc.Issue6366 - uid: BuildFromProject.Inheritdoc.Issue6366.Class1`1 name: Inheritdoc.Issue6366.Class1 - href: api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html + href: api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.yml commentId: T:BuildFromProject.Inheritdoc.Issue6366.Class1`1 name.vb: Inheritdoc.Issue6366.Class1(Of T) fullName: BuildFromProject.Inheritdoc.Issue6366.Class1 @@ -546,7 +546,7 @@ references: nameWithType.vb: Inheritdoc.Issue6366.Class1(Of T) - uid: BuildFromProject.Inheritdoc.Issue6366.Class1`1.TestMethod1(`0,System.Int32) name: TestMethod1(T, int) - href: api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html#BuildFromProject_Inheritdoc_Issue6366_Class1_1_TestMethod1__0_System_Int32_ + href: api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.yml commentId: M:BuildFromProject.Inheritdoc.Issue6366.Class1`1.TestMethod1(`0,System.Int32) name.vb: TestMethod1(T, Integer) fullName: BuildFromProject.Inheritdoc.Issue6366.Class1.TestMethod1(T, int) @@ -555,7 +555,7 @@ references: nameWithType.vb: Inheritdoc.Issue6366.Class1(Of T).TestMethod1(T, Integer) - uid: BuildFromProject.Inheritdoc.Issue6366.Class1`1.TestMethod1* name: TestMethod1 - href: api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html#BuildFromProject_Inheritdoc_Issue6366_Class1_1_TestMethod1_ + href: api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue6366.Class1`1.TestMethod1 isSpec: "True" fullName: BuildFromProject.Inheritdoc.Issue6366.Class1.TestMethod1 @@ -564,13 +564,13 @@ references: nameWithType.vb: Inheritdoc.Issue6366.Class1(Of T).TestMethod1 - uid: BuildFromProject.Inheritdoc.Issue6366.Class2 name: Inheritdoc.Issue6366.Class2 - href: api/BuildFromProject.Inheritdoc.Issue6366.Class2.html + href: api/BuildFromProject.Inheritdoc.Issue6366.Class2.yml commentId: T:BuildFromProject.Inheritdoc.Issue6366.Class2 fullName: BuildFromProject.Inheritdoc.Issue6366.Class2 nameWithType: Inheritdoc.Issue6366.Class2 - uid: BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1(System.Boolean,System.Int32) name: TestMethod1(bool, int) - href: api/BuildFromProject.Inheritdoc.Issue6366.Class2.html#BuildFromProject_Inheritdoc_Issue6366_Class2_TestMethod1_System_Boolean_System_Int32_ + href: api/BuildFromProject.Inheritdoc.Issue6366.Class2.yml commentId: M:BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1(System.Boolean,System.Int32) name.vb: TestMethod1(Boolean, Integer) fullName: BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1(bool, int) @@ -579,52 +579,52 @@ references: nameWithType.vb: Inheritdoc.Issue6366.Class2.TestMethod1(Boolean, Integer) - uid: BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1* name: TestMethod1 - href: api/BuildFromProject.Inheritdoc.Issue6366.Class2.html#BuildFromProject_Inheritdoc_Issue6366_Class2_TestMethod1_ + href: api/BuildFromProject.Inheritdoc.Issue6366.Class2.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1 isSpec: "True" fullName: BuildFromProject.Inheritdoc.Issue6366.Class2.TestMethod1 nameWithType: Inheritdoc.Issue6366.Class2.TestMethod1 - uid: BuildFromProject.Inheritdoc.Issue7035 name: Inheritdoc.Issue7035 - href: api/BuildFromProject.Inheritdoc.Issue7035.html + href: api/BuildFromProject.Inheritdoc.Issue7035.yml commentId: T:BuildFromProject.Inheritdoc.Issue7035 fullName: BuildFromProject.Inheritdoc.Issue7035 nameWithType: Inheritdoc.Issue7035 - uid: BuildFromProject.Inheritdoc.Issue7035.A name: A() - href: api/BuildFromProject.Inheritdoc.Issue7035.html#BuildFromProject_Inheritdoc_Issue7035_A + href: api/BuildFromProject.Inheritdoc.Issue7035.yml commentId: M:BuildFromProject.Inheritdoc.Issue7035.A fullName: BuildFromProject.Inheritdoc.Issue7035.A() nameWithType: Inheritdoc.Issue7035.A() - uid: BuildFromProject.Inheritdoc.Issue7035.A* name: A - href: api/BuildFromProject.Inheritdoc.Issue7035.html#BuildFromProject_Inheritdoc_Issue7035_A_ + href: api/BuildFromProject.Inheritdoc.Issue7035.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue7035.A isSpec: "True" fullName: BuildFromProject.Inheritdoc.Issue7035.A nameWithType: Inheritdoc.Issue7035.A - uid: BuildFromProject.Inheritdoc.Issue7035.B name: B() - href: api/BuildFromProject.Inheritdoc.Issue7035.html#BuildFromProject_Inheritdoc_Issue7035_B + href: api/BuildFromProject.Inheritdoc.Issue7035.yml commentId: M:BuildFromProject.Inheritdoc.Issue7035.B fullName: BuildFromProject.Inheritdoc.Issue7035.B() nameWithType: Inheritdoc.Issue7035.B() - uid: BuildFromProject.Inheritdoc.Issue7035.B* name: B - href: api/BuildFromProject.Inheritdoc.Issue7035.html#BuildFromProject_Inheritdoc_Issue7035_B_ + href: api/BuildFromProject.Inheritdoc.Issue7035.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue7035.B isSpec: "True" fullName: BuildFromProject.Inheritdoc.Issue7035.B nameWithType: Inheritdoc.Issue7035.B - uid: BuildFromProject.Inheritdoc.Issue7484 name: Inheritdoc.Issue7484 - href: api/BuildFromProject.Inheritdoc.Issue7484.html + href: api/BuildFromProject.Inheritdoc.Issue7484.yml commentId: T:BuildFromProject.Inheritdoc.Issue7484 fullName: BuildFromProject.Inheritdoc.Issue7484 nameWithType: Inheritdoc.Issue7484 - uid: BuildFromProject.Inheritdoc.Issue7484.#ctor name: Issue7484() - href: api/BuildFromProject.Inheritdoc.Issue7484.html#BuildFromProject_Inheritdoc_Issue7484__ctor + href: api/BuildFromProject.Inheritdoc.Issue7484.yml commentId: M:BuildFromProject.Inheritdoc.Issue7484.#ctor name.vb: New() fullName: BuildFromProject.Inheritdoc.Issue7484.Issue7484() @@ -633,7 +633,7 @@ references: nameWithType.vb: Inheritdoc.Issue7484.New() - uid: BuildFromProject.Inheritdoc.Issue7484.#ctor* name: Issue7484 - href: api/BuildFromProject.Inheritdoc.Issue7484.html#BuildFromProject_Inheritdoc_Issue7484__ctor_ + href: api/BuildFromProject.Inheritdoc.Issue7484.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue7484.#ctor isSpec: "True" name.vb: New @@ -643,7 +643,7 @@ references: nameWithType.vb: Inheritdoc.Issue7484.New - uid: BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod(System.Boolean) name: BoolReturningMethod(bool) - href: api/BuildFromProject.Inheritdoc.Issue7484.html#BuildFromProject_Inheritdoc_Issue7484_BoolReturningMethod_System_Boolean_ + href: api/BuildFromProject.Inheritdoc.Issue7484.yml commentId: M:BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod(System.Boolean) name.vb: BoolReturningMethod(Boolean) fullName: BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod(bool) @@ -652,59 +652,59 @@ references: nameWithType.vb: Inheritdoc.Issue7484.BoolReturningMethod(Boolean) - uid: BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod* name: BoolReturningMethod - href: api/BuildFromProject.Inheritdoc.Issue7484.html#BuildFromProject_Inheritdoc_Issue7484_BoolReturningMethod_ + href: api/BuildFromProject.Inheritdoc.Issue7484.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod isSpec: "True" fullName: BuildFromProject.Inheritdoc.Issue7484.BoolReturningMethod nameWithType: Inheritdoc.Issue7484.BoolReturningMethod - uid: BuildFromProject.Inheritdoc.Issue7484.DoDad name: DoDad - href: api/BuildFromProject.Inheritdoc.Issue7484.html#BuildFromProject_Inheritdoc_Issue7484_DoDad + href: api/BuildFromProject.Inheritdoc.Issue7484.yml commentId: P:BuildFromProject.Inheritdoc.Issue7484.DoDad fullName: BuildFromProject.Inheritdoc.Issue7484.DoDad nameWithType: Inheritdoc.Issue7484.DoDad - uid: BuildFromProject.Inheritdoc.Issue7484.DoDad* name: DoDad - href: api/BuildFromProject.Inheritdoc.Issue7484.html#BuildFromProject_Inheritdoc_Issue7484_DoDad_ + href: api/BuildFromProject.Inheritdoc.Issue7484.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue7484.DoDad isSpec: "True" fullName: BuildFromProject.Inheritdoc.Issue7484.DoDad nameWithType: Inheritdoc.Issue7484.DoDad - uid: BuildFromProject.Inheritdoc.Issue7628 name: Issue7628() - href: api/BuildFromProject.Inheritdoc.html#BuildFromProject_Inheritdoc_Issue7628 + href: api/BuildFromProject.Inheritdoc.yml commentId: M:BuildFromProject.Inheritdoc.Issue7628 fullName: BuildFromProject.Inheritdoc.Issue7628() nameWithType: Inheritdoc.Issue7628() - uid: BuildFromProject.Inheritdoc.Issue7628* name: Issue7628 - href: api/BuildFromProject.Inheritdoc.html#BuildFromProject_Inheritdoc_Issue7628_ + href: api/BuildFromProject.Inheritdoc.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue7628 isSpec: "True" fullName: BuildFromProject.Inheritdoc.Issue7628 nameWithType: Inheritdoc.Issue7628 - uid: BuildFromProject.Inheritdoc.Issue7629 name: Issue7629() - href: api/BuildFromProject.Inheritdoc.html#BuildFromProject_Inheritdoc_Issue7629 + href: api/BuildFromProject.Inheritdoc.yml commentId: M:BuildFromProject.Inheritdoc.Issue7629 fullName: BuildFromProject.Inheritdoc.Issue7629() nameWithType: Inheritdoc.Issue7629() - uid: BuildFromProject.Inheritdoc.Issue7629* name: Issue7629 - href: api/BuildFromProject.Inheritdoc.html#BuildFromProject_Inheritdoc_Issue7629_ + href: api/BuildFromProject.Inheritdoc.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue7629 isSpec: "True" fullName: BuildFromProject.Inheritdoc.Issue7629 nameWithType: Inheritdoc.Issue7629 - uid: BuildFromProject.Inheritdoc.Issue8101 name: Inheritdoc.Issue8101 - href: api/BuildFromProject.Inheritdoc.Issue8101.html + href: api/BuildFromProject.Inheritdoc.Issue8101.yml commentId: T:BuildFromProject.Inheritdoc.Issue8101 fullName: BuildFromProject.Inheritdoc.Issue8101 nameWithType: Inheritdoc.Issue8101 - uid: BuildFromProject.Inheritdoc.Issue8101.Tween(System.Int32,System.Int32,System.Single,System.Action{System.Int32}) name: Tween(int, int, float, Action) - href: api/BuildFromProject.Inheritdoc.Issue8101.html#BuildFromProject_Inheritdoc_Issue8101_Tween_System_Int32_System_Int32_System_Single_System_Action_System_Int32__ + href: api/BuildFromProject.Inheritdoc.Issue8101.yml commentId: M:BuildFromProject.Inheritdoc.Issue8101.Tween(System.Int32,System.Int32,System.Single,System.Action{System.Int32}) name.vb: Tween(Integer, Integer, Single, Action(Of Integer)) fullName: BuildFromProject.Inheritdoc.Issue8101.Tween(int, int, float, System.Action) @@ -713,7 +713,7 @@ references: nameWithType.vb: Inheritdoc.Issue8101.Tween(Integer, Integer, Single, Action(Of Integer)) - uid: BuildFromProject.Inheritdoc.Issue8101.Tween(System.Single,System.Single,System.Single,System.Action{System.Single}) name: Tween(float, float, float, Action) - href: api/BuildFromProject.Inheritdoc.Issue8101.html#BuildFromProject_Inheritdoc_Issue8101_Tween_System_Single_System_Single_System_Single_System_Action_System_Single__ + href: api/BuildFromProject.Inheritdoc.Issue8101.yml commentId: M:BuildFromProject.Inheritdoc.Issue8101.Tween(System.Single,System.Single,System.Single,System.Action{System.Single}) name.vb: Tween(Single, Single, Single, Action(Of Single)) fullName: BuildFromProject.Inheritdoc.Issue8101.Tween(float, float, float, System.Action) @@ -722,20 +722,20 @@ references: nameWithType.vb: Inheritdoc.Issue8101.Tween(Single, Single, Single, Action(Of Single)) - uid: BuildFromProject.Inheritdoc.Issue8101.Tween* name: Tween - href: api/BuildFromProject.Inheritdoc.Issue8101.html#BuildFromProject_Inheritdoc_Issue8101_Tween_ + href: api/BuildFromProject.Inheritdoc.Issue8101.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue8101.Tween isSpec: "True" fullName: BuildFromProject.Inheritdoc.Issue8101.Tween nameWithType: Inheritdoc.Issue8101.Tween - uid: BuildFromProject.Inheritdoc.Issue8129 name: Inheritdoc.Issue8129 - href: api/BuildFromProject.Inheritdoc.Issue8129.html + href: api/BuildFromProject.Inheritdoc.Issue8129.yml commentId: T:BuildFromProject.Inheritdoc.Issue8129 fullName: BuildFromProject.Inheritdoc.Issue8129 nameWithType: Inheritdoc.Issue8129 - uid: BuildFromProject.Inheritdoc.Issue8129.#ctor(System.String) name: Issue8129(string) - href: api/BuildFromProject.Inheritdoc.Issue8129.html#BuildFromProject_Inheritdoc_Issue8129__ctor_System_String_ + href: api/BuildFromProject.Inheritdoc.Issue8129.yml commentId: M:BuildFromProject.Inheritdoc.Issue8129.#ctor(System.String) name.vb: New(String) fullName: BuildFromProject.Inheritdoc.Issue8129.Issue8129(string) @@ -744,7 +744,7 @@ references: nameWithType.vb: Inheritdoc.Issue8129.New(String) - uid: BuildFromProject.Inheritdoc.Issue8129.#ctor* name: Issue8129 - href: api/BuildFromProject.Inheritdoc.Issue8129.html#BuildFromProject_Inheritdoc_Issue8129__ctor_ + href: api/BuildFromProject.Inheritdoc.Issue8129.yml commentId: Overload:BuildFromProject.Inheritdoc.Issue8129.#ctor isSpec: "True" name.vb: New @@ -754,110 +754,110 @@ references: nameWithType.vb: Inheritdoc.Issue8129.New - uid: BuildFromProject.Issue8540 name: BuildFromProject.Issue8540 - href: api/BuildFromProject.Issue8540.html + href: api/BuildFromProject.Issue8540.yml - uid: BuildFromProject.Issue8540.A name: BuildFromProject.Issue8540.A - href: api/BuildFromProject.Issue8540.A.html + href: api/BuildFromProject.Issue8540.A.yml commentId: N:BuildFromProject.Issue8540.A fullName: BuildFromProject.Issue8540.A nameWithType: BuildFromProject.Issue8540.A - uid: BuildFromProject.Issue8540.A.A name: A - href: api/BuildFromProject.Issue8540.A.A.html + href: api/BuildFromProject.Issue8540.A.A.yml commentId: T:BuildFromProject.Issue8540.A.A fullName: BuildFromProject.Issue8540.A.A nameWithType: A - uid: BuildFromProject.Issue8540.B name: BuildFromProject.Issue8540.B - href: api/BuildFromProject.Issue8540.B.html + href: api/BuildFromProject.Issue8540.B.yml commentId: N:BuildFromProject.Issue8540.B fullName: BuildFromProject.Issue8540.B nameWithType: BuildFromProject.Issue8540.B - uid: BuildFromProject.Issue8540.B.B name: B - href: api/BuildFromProject.Issue8540.B.B.html + href: api/BuildFromProject.Issue8540.B.B.yml commentId: T:BuildFromProject.Issue8540.B.B fullName: BuildFromProject.Issue8540.B.B nameWithType: B - uid: BuildFromProject.Issue8725 name: Issue8725 - href: api/BuildFromProject.Issue8725.html + href: api/BuildFromProject.Issue8725.yml commentId: T:BuildFromProject.Issue8725 fullName: BuildFromProject.Issue8725 nameWithType: Issue8725 - uid: BuildFromProject.Issue8725.MoreOperations name: MoreOperations() - href: api/BuildFromProject.Issue8725.html#BuildFromProject_Issue8725_MoreOperations + href: api/BuildFromProject.Issue8725.yml commentId: M:BuildFromProject.Issue8725.MoreOperations fullName: BuildFromProject.Issue8725.MoreOperations() nameWithType: Issue8725.MoreOperations() - uid: BuildFromProject.Issue8725.MoreOperations* name: MoreOperations - href: api/BuildFromProject.Issue8725.html#BuildFromProject_Issue8725_MoreOperations_ + href: api/BuildFromProject.Issue8725.yml commentId: Overload:BuildFromProject.Issue8725.MoreOperations isSpec: "True" fullName: BuildFromProject.Issue8725.MoreOperations nameWithType: Issue8725.MoreOperations - uid: BuildFromProject.Issue8725.MyOperation name: MyOperation() - href: api/BuildFromProject.Issue8725.html#BuildFromProject_Issue8725_MyOperation + href: api/BuildFromProject.Issue8725.yml commentId: M:BuildFromProject.Issue8725.MyOperation fullName: BuildFromProject.Issue8725.MyOperation() nameWithType: Issue8725.MyOperation() - uid: BuildFromProject.Issue8725.MyOperation* name: MyOperation - href: api/BuildFromProject.Issue8725.html#BuildFromProject_Issue8725_MyOperation_ + href: api/BuildFromProject.Issue8725.yml commentId: Overload:BuildFromProject.Issue8725.MyOperation isSpec: "True" fullName: BuildFromProject.Issue8725.MyOperation nameWithType: Issue8725.MyOperation - uid: BuildFromVBSourceCode name: BuildFromVBSourceCode - href: api/BuildFromVBSourceCode.html + href: api/BuildFromVBSourceCode.yml commentId: N:BuildFromVBSourceCode fullName: BuildFromVBSourceCode nameWithType: BuildFromVBSourceCode - uid: BuildFromVBSourceCode.BaseClass1 name: BaseClass1 - href: api/BuildFromVBSourceCode.BaseClass1.html + href: api/BuildFromVBSourceCode.BaseClass1.yml commentId: T:BuildFromVBSourceCode.BaseClass1 fullName: BuildFromVBSourceCode.BaseClass1 nameWithType: BaseClass1 - uid: BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1) name: WithDeclarationKeyword(Class1) - href: api/BuildFromVBSourceCode.BaseClass1.html#BuildFromVBSourceCode_BaseClass1_WithDeclarationKeyword_BuildFromVBSourceCode_Class1_ + href: api/BuildFromVBSourceCode.BaseClass1.yml commentId: M:BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1) fullName: BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1) nameWithType: BaseClass1.WithDeclarationKeyword(Class1) - uid: BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword* name: WithDeclarationKeyword - href: api/BuildFromVBSourceCode.BaseClass1.html#BuildFromVBSourceCode_BaseClass1_WithDeclarationKeyword_ + href: api/BuildFromVBSourceCode.BaseClass1.yml commentId: Overload:BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword isSpec: "True" fullName: BuildFromVBSourceCode.BaseClass1.WithDeclarationKeyword nameWithType: BaseClass1.WithDeclarationKeyword - uid: BuildFromVBSourceCode.Class1 name: Class1 - href: api/BuildFromVBSourceCode.Class1.html + href: api/BuildFromVBSourceCode.Class1.yml commentId: T:BuildFromVBSourceCode.Class1 fullName: BuildFromVBSourceCode.Class1 nameWithType: Class1 - uid: BuildFromVBSourceCode.Class1.Keyword name: Keyword - href: api/BuildFromVBSourceCode.Class1.html#BuildFromVBSourceCode_Class1_Keyword + href: api/BuildFromVBSourceCode.Class1.yml commentId: P:BuildFromVBSourceCode.Class1.Keyword fullName: BuildFromVBSourceCode.Class1.Keyword nameWithType: Class1.Keyword - uid: BuildFromVBSourceCode.Class1.Keyword* name: Keyword - href: api/BuildFromVBSourceCode.Class1.html#BuildFromVBSourceCode_Class1_Keyword_ + href: api/BuildFromVBSourceCode.Class1.yml commentId: Overload:BuildFromVBSourceCode.Class1.Keyword isSpec: "True" fullName: BuildFromVBSourceCode.Class1.Keyword nameWithType: Class1.Keyword - uid: BuildFromVBSourceCode.Class1.Value(System.String) name: Value(string) - href: api/BuildFromVBSourceCode.Class1.html#BuildFromVBSourceCode_Class1_Value_System_String_ + href: api/BuildFromVBSourceCode.Class1.yml commentId: M:BuildFromVBSourceCode.Class1.Value(System.String) name.vb: Value(String) fullName: BuildFromVBSourceCode.Class1.Value(string) @@ -866,39 +866,39 @@ references: nameWithType.vb: Class1.Value(String) - uid: BuildFromVBSourceCode.Class1.Value* name: Value - href: api/BuildFromVBSourceCode.Class1.html#BuildFromVBSourceCode_Class1_Value_ + href: api/BuildFromVBSourceCode.Class1.yml commentId: Overload:BuildFromVBSourceCode.Class1.Value isSpec: "True" fullName: BuildFromVBSourceCode.Class1.Value nameWithType: Class1.Value - uid: BuildFromVBSourceCode.Class1.ValueClass name: ValueClass - href: api/BuildFromVBSourceCode.Class1.html#BuildFromVBSourceCode_Class1_ValueClass + href: api/BuildFromVBSourceCode.Class1.yml commentId: F:BuildFromVBSourceCode.Class1.ValueClass fullName: BuildFromVBSourceCode.Class1.ValueClass nameWithType: Class1.ValueClass - uid: BuildFromVBSourceCode.Class1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1) name: WithDeclarationKeyword(Class1) - href: api/BuildFromVBSourceCode.Class1.html#BuildFromVBSourceCode_Class1_WithDeclarationKeyword_BuildFromVBSourceCode_Class1_ + href: api/BuildFromVBSourceCode.Class1.yml commentId: M:BuildFromVBSourceCode.Class1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1) fullName: BuildFromVBSourceCode.Class1.WithDeclarationKeyword(BuildFromVBSourceCode.Class1) nameWithType: Class1.WithDeclarationKeyword(Class1) - uid: BuildFromVBSourceCode.Class1.WithDeclarationKeyword* name: WithDeclarationKeyword - href: api/BuildFromVBSourceCode.Class1.html#BuildFromVBSourceCode_Class1_WithDeclarationKeyword_ + href: api/BuildFromVBSourceCode.Class1.yml commentId: Overload:BuildFromVBSourceCode.Class1.WithDeclarationKeyword isSpec: "True" fullName: BuildFromVBSourceCode.Class1.WithDeclarationKeyword nameWithType: Class1.WithDeclarationKeyword - uid: CatLibrary name: CatLibrary - href: api/CatLibrary.html + href: api/CatLibrary.yml commentId: N:CatLibrary fullName: CatLibrary nameWithType: CatLibrary - uid: CatLibrary.CatException`1 name: CatException - href: api/CatLibrary.CatException-1.html + href: api/CatLibrary.CatException-1.yml commentId: T:CatLibrary.CatException`1 name.vb: CatException(Of T) fullName: CatLibrary.CatException @@ -907,7 +907,7 @@ references: nameWithType.vb: CatException(Of T) - uid: CatLibrary.Cat`2 name: Cat - href: api/CatLibrary.Cat-2.html + href: api/CatLibrary.Cat-2.yml commentId: T:CatLibrary.Cat`2 name.vb: Cat(Of T, K) fullName: CatLibrary.Cat @@ -916,7 +916,7 @@ references: nameWithType.vb: Cat(Of T, K) - uid: CatLibrary.Cat`2.#ctor name: Cat() - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2__ctor + href: api/CatLibrary.Cat-2.yml commentId: M:CatLibrary.Cat`2.#ctor name.vb: New() fullName: CatLibrary.Cat.Cat() @@ -925,7 +925,7 @@ references: nameWithType.vb: Cat(Of T, K).New() - uid: CatLibrary.Cat`2.#ctor(System.String,System.Int32@,System.String,System.Boolean) name: Cat(string, out int, string, bool) - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2__ctor_System_String_System_Int32__System_String_System_Boolean_ + href: api/CatLibrary.Cat-2.yml commentId: M:CatLibrary.Cat`2.#ctor(System.String,System.Int32@,System.String,System.Boolean) name.vb: New(String, Integer, String, Boolean) fullName: CatLibrary.Cat.Cat(string, out int, string, bool) @@ -934,7 +934,7 @@ references: nameWithType.vb: Cat(Of T, K).New(String, Integer, String, Boolean) - uid: CatLibrary.Cat`2.#ctor(`0) name: Cat(T) - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2__ctor__0_ + href: api/CatLibrary.Cat-2.yml commentId: M:CatLibrary.Cat`2.#ctor(`0) name.vb: New(T) fullName: CatLibrary.Cat.Cat(T) @@ -943,7 +943,7 @@ references: nameWithType.vb: Cat(Of T, K).New(T) - uid: CatLibrary.Cat`2.#ctor* name: Cat - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2__ctor_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.#ctor isSpec: "True" name.vb: New @@ -953,7 +953,7 @@ references: nameWithType.vb: Cat(Of T, K).New - uid: CatLibrary.Cat`2.Age name: Age - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_Age + href: api/CatLibrary.Cat-2.yml commentId: P:CatLibrary.Cat`2.Age fullName: CatLibrary.Cat.Age fullName.vb: CatLibrary.Cat(Of T, K).Age @@ -961,7 +961,7 @@ references: nameWithType.vb: Cat(Of T, K).Age - uid: CatLibrary.Cat`2.Age* name: Age - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_Age_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.Age isSpec: "True" fullName: CatLibrary.Cat.Age @@ -970,7 +970,7 @@ references: nameWithType.vb: Cat(Of T, K).Age - uid: CatLibrary.Cat`2.CalculateFood(System.DateTime) name: Override CalculateFood Name - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_CalculateFood_System_DateTime_ + href: api/CatLibrary.Cat-2.yml commentId: M:CatLibrary.Cat`2.CalculateFood(System.DateTime) name.vb: CalculateFood(Date) fullName: CatLibrary.Cat.CalculateFood(System.DateTime) @@ -979,7 +979,7 @@ references: nameWithType.vb: Cat(Of T, K).CalculateFood(Date) - uid: CatLibrary.Cat`2.CalculateFood* name: CalculateFood - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_CalculateFood_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.CalculateFood isSpec: "True" fullName: CatLibrary.Cat.CalculateFood @@ -988,7 +988,7 @@ references: nameWithType.vb: Cat(Of T, K).CalculateFood - uid: CatLibrary.Cat`2.Equals(System.Object) name: Equals(object) - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_Equals_System_Object_ + href: api/CatLibrary.Cat-2.yml commentId: M:CatLibrary.Cat`2.Equals(System.Object) name.vb: Equals(Object) fullName: CatLibrary.Cat.Equals(object) @@ -997,7 +997,7 @@ references: nameWithType.vb: Cat(Of T, K).Equals(Object) - uid: CatLibrary.Cat`2.Equals* name: Equals - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_Equals_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.Equals isSpec: "True" fullName: CatLibrary.Cat.Equals @@ -1006,7 +1006,7 @@ references: nameWithType.vb: Cat(Of T, K).Equals - uid: CatLibrary.Cat`2.GetTailLength(System.Int32*,System.Object[]) name: GetTailLength(int*, params object[]) - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_GetTailLength_System_Int32__System_Object___ + href: api/CatLibrary.Cat-2.yml commentId: M:CatLibrary.Cat`2.GetTailLength(System.Int32*,System.Object[]) name.vb: GetTailLength(Integer*, ParamArray Object()) fullName: CatLibrary.Cat.GetTailLength(int*, params object[]) @@ -1015,7 +1015,7 @@ references: nameWithType.vb: Cat(Of T, K).GetTailLength(Integer*, ParamArray Object()) - uid: CatLibrary.Cat`2.GetTailLength* name: GetTailLength - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_GetTailLength_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.GetTailLength isSpec: "True" fullName: CatLibrary.Cat.GetTailLength @@ -1024,7 +1024,7 @@ references: nameWithType.vb: Cat(Of T, K).GetTailLength - uid: CatLibrary.Cat`2.Item(System.String) name: this[string] - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_Item_System_String_ + href: api/CatLibrary.Cat-2.yml commentId: P:CatLibrary.Cat`2.Item(System.String) name.vb: this[](String) fullName: CatLibrary.Cat.this[string] @@ -1033,7 +1033,7 @@ references: nameWithType.vb: Cat(Of T, K).this[](String) - uid: CatLibrary.Cat`2.Item* name: this - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_Item_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.Item isSpec: "True" name.vb: this[] @@ -1043,7 +1043,7 @@ references: nameWithType.vb: Cat(Of T, K).this[] - uid: CatLibrary.Cat`2.Jump(`0,`1,System.Boolean@) name: Jump(T, K, ref bool) - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_Jump__0__1_System_Boolean__ + href: api/CatLibrary.Cat-2.yml commentId: M:CatLibrary.Cat`2.Jump(`0,`1,System.Boolean@) name.vb: Jump(T, K, Boolean) fullName: CatLibrary.Cat.Jump(T, K, ref bool) @@ -1052,7 +1052,7 @@ references: nameWithType.vb: Cat(Of T, K).Jump(T, K, Boolean) - uid: CatLibrary.Cat`2.Jump* name: Jump - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_Jump_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.Jump isSpec: "True" fullName: CatLibrary.Cat.Jump @@ -1061,7 +1061,7 @@ references: nameWithType.vb: Cat(Of T, K).Jump - uid: CatLibrary.Cat`2.Name name: Name - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_Name + href: api/CatLibrary.Cat-2.yml commentId: P:CatLibrary.Cat`2.Name fullName: CatLibrary.Cat.Name fullName.vb: CatLibrary.Cat(Of T, K).Name @@ -1069,7 +1069,7 @@ references: nameWithType.vb: Cat(Of T, K).Name - uid: CatLibrary.Cat`2.Name* name: Name - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_Name_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.Name isSpec: "True" fullName: CatLibrary.Cat.Name @@ -1078,7 +1078,7 @@ references: nameWithType.vb: Cat(Of T, K).Name - uid: CatLibrary.Cat`2.isHealthy name: isHealthy - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_isHealthy + href: api/CatLibrary.Cat-2.yml commentId: F:CatLibrary.Cat`2.isHealthy fullName: CatLibrary.Cat.isHealthy fullName.vb: CatLibrary.Cat(Of T, K).isHealthy @@ -1086,7 +1086,7 @@ references: nameWithType.vb: Cat(Of T, K).isHealthy - uid: CatLibrary.Cat`2.op_Addition(CatLibrary.Cat{`0,`1},System.Int32) name: operator +(Cat, int) - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_op_Addition_CatLibrary_Cat__0__1__System_Int32_ + href: api/CatLibrary.Cat-2.yml commentId: M:CatLibrary.Cat`2.op_Addition(CatLibrary.Cat{`0,`1},System.Int32) name.vb: +(Cat(Of T, K), Integer) fullName: CatLibrary.Cat.operator +(CatLibrary.Cat, int) @@ -1095,7 +1095,7 @@ references: nameWithType.vb: Cat(Of T, K).+(Cat(Of T, K), Integer) - uid: CatLibrary.Cat`2.op_Addition* name: operator + - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_op_Addition_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.op_Addition isSpec: "True" name.vb: + @@ -1105,7 +1105,7 @@ references: nameWithType.vb: Cat(Of T, K).+ - uid: CatLibrary.Cat`2.op_Explicit(CatLibrary.Cat{`0,`1})~CatLibrary.Tom name: explicit operator Tom(Cat) - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_op_Explicit_CatLibrary_Cat__0__1___CatLibrary_Tom + href: api/CatLibrary.Cat-2.yml commentId: M:CatLibrary.Cat`2.op_Explicit(CatLibrary.Cat{`0,`1})~CatLibrary.Tom name.vb: CType(Cat(Of T, K)) fullName: CatLibrary.Cat.explicit operator CatLibrary.Tom(CatLibrary.Cat) @@ -1114,7 +1114,7 @@ references: nameWithType.vb: Cat(Of T, K).CType(Cat(Of T, K)) - uid: CatLibrary.Cat`2.op_Explicit* name: explicit operator - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_op_Explicit_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.op_Explicit isSpec: "True" name.vb: CType @@ -1124,7 +1124,7 @@ references: nameWithType.vb: Cat(Of T, K).CType - uid: CatLibrary.Cat`2.op_Subtraction(CatLibrary.Cat{`0,`1},System.Int32) name: operator -(Cat, int) - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_op_Subtraction_CatLibrary_Cat__0__1__System_Int32_ + href: api/CatLibrary.Cat-2.yml commentId: M:CatLibrary.Cat`2.op_Subtraction(CatLibrary.Cat{`0,`1},System.Int32) name.vb: -(Cat(Of T, K), Integer) fullName: CatLibrary.Cat.operator -(CatLibrary.Cat, int) @@ -1133,7 +1133,7 @@ references: nameWithType.vb: Cat(Of T, K).-(Cat(Of T, K), Integer) - uid: CatLibrary.Cat`2.op_Subtraction* name: operator - - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_op_Subtraction_ + href: api/CatLibrary.Cat-2.yml commentId: Overload:CatLibrary.Cat`2.op_Subtraction isSpec: "True" name.vb: '-' @@ -1143,7 +1143,7 @@ references: nameWithType.vb: Cat(Of T, K).- - uid: CatLibrary.Cat`2.ownEat name: ownEat - href: api/CatLibrary.Cat-2.html#CatLibrary_Cat_2_ownEat + href: api/CatLibrary.Cat-2.yml commentId: E:CatLibrary.Cat`2.ownEat fullName: CatLibrary.Cat.ownEat fullName.vb: CatLibrary.Cat(Of T, K).ownEat @@ -1151,7 +1151,7 @@ references: nameWithType.vb: Cat(Of T, K).ownEat - uid: CatLibrary.Complex`2 name: Complex - href: api/CatLibrary.Complex-2.html + href: api/CatLibrary.Complex-2.yml commentId: T:CatLibrary.Complex`2 name.vb: Complex(Of T, J) fullName: CatLibrary.Complex @@ -1160,73 +1160,73 @@ references: nameWithType.vb: Complex(Of T, J) - uid: CatLibrary.Core name: CatLibrary.Core - href: api/CatLibrary.Core.html + href: api/CatLibrary.Core.yml commentId: N:CatLibrary.Core fullName: CatLibrary.Core nameWithType: CatLibrary.Core - uid: CatLibrary.Core.ContainersRefType name: ContainersRefType - href: api/CatLibrary.Core.ContainersRefType.html + href: api/CatLibrary.Core.ContainersRefType.yml commentId: T:CatLibrary.Core.ContainersRefType fullName: CatLibrary.Core.ContainersRefType nameWithType: ContainersRefType - uid: CatLibrary.Core.ContainersRefType.ColorCount name: ColorCount - href: api/CatLibrary.Core.ContainersRefType.html#CatLibrary_Core_ContainersRefType_ColorCount + href: api/CatLibrary.Core.ContainersRefType.yml commentId: F:CatLibrary.Core.ContainersRefType.ColorCount fullName: CatLibrary.Core.ContainersRefType.ColorCount nameWithType: ContainersRefType.ColorCount - uid: CatLibrary.Core.ContainersRefType.ColorType name: ContainersRefType.ColorType - href: api/CatLibrary.Core.ContainersRefType.ColorType.html + href: api/CatLibrary.Core.ContainersRefType.ColorType.yml commentId: T:CatLibrary.Core.ContainersRefType.ColorType fullName: CatLibrary.Core.ContainersRefType.ColorType nameWithType: ContainersRefType.ColorType - uid: CatLibrary.Core.ContainersRefType.ColorType.Blue name: Blue - href: api/CatLibrary.Core.ContainersRefType.ColorType.html#CatLibrary_Core_ContainersRefType_ColorType_Blue + href: api/CatLibrary.Core.ContainersRefType.ColorType.yml commentId: F:CatLibrary.Core.ContainersRefType.ColorType.Blue fullName: CatLibrary.Core.ContainersRefType.ColorType.Blue nameWithType: ContainersRefType.ColorType.Blue - uid: CatLibrary.Core.ContainersRefType.ColorType.Red name: Red - href: api/CatLibrary.Core.ContainersRefType.ColorType.html#CatLibrary_Core_ContainersRefType_ColorType_Red + href: api/CatLibrary.Core.ContainersRefType.ColorType.yml commentId: F:CatLibrary.Core.ContainersRefType.ColorType.Red fullName: CatLibrary.Core.ContainersRefType.ColorType.Red nameWithType: ContainersRefType.ColorType.Red - uid: CatLibrary.Core.ContainersRefType.ColorType.Yellow name: Yellow - href: api/CatLibrary.Core.ContainersRefType.ColorType.html#CatLibrary_Core_ContainersRefType_ColorType_Yellow + href: api/CatLibrary.Core.ContainersRefType.ColorType.yml commentId: F:CatLibrary.Core.ContainersRefType.ColorType.Yellow fullName: CatLibrary.Core.ContainersRefType.ColorType.Yellow nameWithType: ContainersRefType.ColorType.Yellow - uid: CatLibrary.Core.ContainersRefType.ContainersRefTypeChild name: ContainersRefType.ContainersRefTypeChild - href: api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html + href: api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.yml commentId: T:CatLibrary.Core.ContainersRefType.ContainersRefTypeChild fullName: CatLibrary.Core.ContainersRefType.ContainersRefTypeChild nameWithType: ContainersRefType.ContainersRefTypeChild - uid: CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface name: ContainersRefType.ContainersRefTypeChildInterface - href: api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html + href: api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.yml commentId: T:CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface fullName: CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface nameWithType: ContainersRefType.ContainersRefTypeChildInterface - uid: CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate name: ContainersRefType.ContainersRefTypeDelegate - href: api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html + href: api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.yml commentId: T:CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate fullName: CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate nameWithType: ContainersRefType.ContainersRefTypeDelegate - uid: CatLibrary.Core.ContainersRefType.ContainersRefTypeEventHandler name: ContainersRefTypeEventHandler - href: api/CatLibrary.Core.ContainersRefType.html#CatLibrary_Core_ContainersRefType_ContainersRefTypeEventHandler + href: api/CatLibrary.Core.ContainersRefType.yml commentId: E:CatLibrary.Core.ContainersRefType.ContainersRefTypeEventHandler fullName: CatLibrary.Core.ContainersRefType.ContainersRefTypeEventHandler nameWithType: ContainersRefType.ContainersRefTypeEventHandler - uid: CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod(System.Object[]) name: ContainersRefTypeNonRefMethod(params object[]) - href: api/CatLibrary.Core.ContainersRefType.html#CatLibrary_Core_ContainersRefType_ContainersRefTypeNonRefMethod_System_Object___ + href: api/CatLibrary.Core.ContainersRefType.yml commentId: M:CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod(System.Object[]) name.vb: ContainersRefTypeNonRefMethod(ParamArray Object()) fullName: CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod(params object[]) @@ -1235,65 +1235,65 @@ references: nameWithType.vb: ContainersRefType.ContainersRefTypeNonRefMethod(ParamArray Object()) - uid: CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod* name: ContainersRefTypeNonRefMethod - href: api/CatLibrary.Core.ContainersRefType.html#CatLibrary_Core_ContainersRefType_ContainersRefTypeNonRefMethod_ + href: api/CatLibrary.Core.ContainersRefType.yml commentId: Overload:CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod isSpec: "True" fullName: CatLibrary.Core.ContainersRefType.ContainersRefTypeNonRefMethod nameWithType: ContainersRefType.ContainersRefTypeNonRefMethod - uid: CatLibrary.Core.ContainersRefType.GetColorCount name: GetColorCount - href: api/CatLibrary.Core.ContainersRefType.html#CatLibrary_Core_ContainersRefType_GetColorCount + href: api/CatLibrary.Core.ContainersRefType.yml commentId: P:CatLibrary.Core.ContainersRefType.GetColorCount fullName: CatLibrary.Core.ContainersRefType.GetColorCount nameWithType: ContainersRefType.GetColorCount - uid: CatLibrary.Core.ContainersRefType.GetColorCount* name: GetColorCount - href: api/CatLibrary.Core.ContainersRefType.html#CatLibrary_Core_ContainersRefType_GetColorCount_ + href: api/CatLibrary.Core.ContainersRefType.yml commentId: Overload:CatLibrary.Core.ContainersRefType.GetColorCount isSpec: "True" fullName: CatLibrary.Core.ContainersRefType.GetColorCount nameWithType: ContainersRefType.GetColorCount - uid: CatLibrary.Core.ExplicitLayoutClass name: ExplicitLayoutClass - href: api/CatLibrary.Core.ExplicitLayoutClass.html + href: api/CatLibrary.Core.ExplicitLayoutClass.yml commentId: T:CatLibrary.Core.ExplicitLayoutClass fullName: CatLibrary.Core.ExplicitLayoutClass nameWithType: ExplicitLayoutClass - uid: CatLibrary.Core.Issue231 name: Issue231 - href: api/CatLibrary.Core.Issue231.html + href: api/CatLibrary.Core.Issue231.yml commentId: T:CatLibrary.Core.Issue231 fullName: CatLibrary.Core.Issue231 nameWithType: Issue231 - uid: CatLibrary.Core.Issue231.Bar(CatLibrary.Core.ContainersRefType) name: Bar(ContainersRefType) - href: api/CatLibrary.Core.Issue231.html#CatLibrary_Core_Issue231_Bar_CatLibrary_Core_ContainersRefType_ + href: api/CatLibrary.Core.Issue231.yml commentId: M:CatLibrary.Core.Issue231.Bar(CatLibrary.Core.ContainersRefType) fullName: CatLibrary.Core.Issue231.Bar(CatLibrary.Core.ContainersRefType) nameWithType: Issue231.Bar(ContainersRefType) - uid: CatLibrary.Core.Issue231.Bar* name: Bar - href: api/CatLibrary.Core.Issue231.html#CatLibrary_Core_Issue231_Bar_ + href: api/CatLibrary.Core.Issue231.yml commentId: Overload:CatLibrary.Core.Issue231.Bar isSpec: "True" fullName: CatLibrary.Core.Issue231.Bar nameWithType: Issue231.Bar - uid: CatLibrary.Core.Issue231.Foo(CatLibrary.Core.ContainersRefType) name: Foo(ContainersRefType) - href: api/CatLibrary.Core.Issue231.html#CatLibrary_Core_Issue231_Foo_CatLibrary_Core_ContainersRefType_ + href: api/CatLibrary.Core.Issue231.yml commentId: M:CatLibrary.Core.Issue231.Foo(CatLibrary.Core.ContainersRefType) fullName: CatLibrary.Core.Issue231.Foo(CatLibrary.Core.ContainersRefType) nameWithType: Issue231.Foo(ContainersRefType) - uid: CatLibrary.Core.Issue231.Foo* name: Foo - href: api/CatLibrary.Core.Issue231.html#CatLibrary_Core_Issue231_Foo_ + href: api/CatLibrary.Core.Issue231.yml commentId: Overload:CatLibrary.Core.Issue231.Foo isSpec: "True" fullName: CatLibrary.Core.Issue231.Foo nameWithType: Issue231.Foo - uid: CatLibrary.FakeDelegate`1 name: FakeDelegate - href: api/CatLibrary.FakeDelegate-1.html + href: api/CatLibrary.FakeDelegate-1.yml commentId: T:CatLibrary.FakeDelegate`1 name.vb: FakeDelegate(Of T) fullName: CatLibrary.FakeDelegate @@ -1302,19 +1302,19 @@ references: nameWithType.vb: FakeDelegate(Of T) - uid: CatLibrary.IAnimal name: IAnimal - href: api/CatLibrary.IAnimal.html + href: api/CatLibrary.IAnimal.yml commentId: T:CatLibrary.IAnimal fullName: CatLibrary.IAnimal nameWithType: IAnimal - uid: CatLibrary.IAnimal.Eat name: Eat() - href: api/CatLibrary.IAnimal.html#CatLibrary_IAnimal_Eat + href: api/CatLibrary.IAnimal.yml commentId: M:CatLibrary.IAnimal.Eat fullName: CatLibrary.IAnimal.Eat() nameWithType: IAnimal.Eat() - uid: CatLibrary.IAnimal.Eat(System.String) name: Eat(string) - href: api/CatLibrary.IAnimal.html#CatLibrary_IAnimal_Eat_System_String_ + href: api/CatLibrary.IAnimal.yml commentId: M:CatLibrary.IAnimal.Eat(System.String) name.vb: Eat(String) fullName: CatLibrary.IAnimal.Eat(string) @@ -1323,14 +1323,14 @@ references: nameWithType.vb: IAnimal.Eat(String) - uid: CatLibrary.IAnimal.Eat* name: Eat - href: api/CatLibrary.IAnimal.html#CatLibrary_IAnimal_Eat_ + href: api/CatLibrary.IAnimal.yml commentId: Overload:CatLibrary.IAnimal.Eat isSpec: "True" fullName: CatLibrary.IAnimal.Eat nameWithType: IAnimal.Eat - uid: CatLibrary.IAnimal.Eat``1(``0) name: Eat(Tool) - href: api/CatLibrary.IAnimal.html#CatLibrary_IAnimal_Eat__1___0_ + href: api/CatLibrary.IAnimal.yml commentId: M:CatLibrary.IAnimal.Eat``1(``0) name.vb: Eat(Of Tool)(Tool) fullName: CatLibrary.IAnimal.Eat(Tool) @@ -1339,7 +1339,7 @@ references: nameWithType.vb: IAnimal.Eat(Of Tool)(Tool) - uid: CatLibrary.IAnimal.Item(System.Int32) name: this[int] - href: api/CatLibrary.IAnimal.html#CatLibrary_IAnimal_Item_System_Int32_ + href: api/CatLibrary.IAnimal.yml commentId: P:CatLibrary.IAnimal.Item(System.Int32) name.vb: this[](Integer) fullName: CatLibrary.IAnimal.this[int] @@ -1348,7 +1348,7 @@ references: nameWithType.vb: IAnimal.this[](Integer) - uid: CatLibrary.IAnimal.Item* name: this - href: api/CatLibrary.IAnimal.html#CatLibrary_IAnimal_Item_ + href: api/CatLibrary.IAnimal.yml commentId: Overload:CatLibrary.IAnimal.Item isSpec: "True" name.vb: this[] @@ -1358,51 +1358,51 @@ references: nameWithType.vb: IAnimal.this[] - uid: CatLibrary.IAnimal.Name name: Name - href: api/CatLibrary.IAnimal.html#CatLibrary_IAnimal_Name + href: api/CatLibrary.IAnimal.yml commentId: P:CatLibrary.IAnimal.Name fullName: CatLibrary.IAnimal.Name nameWithType: IAnimal.Name - uid: CatLibrary.IAnimal.Name* name: Name - href: api/CatLibrary.IAnimal.html#CatLibrary_IAnimal_Name_ + href: api/CatLibrary.IAnimal.yml commentId: Overload:CatLibrary.IAnimal.Name isSpec: "True" fullName: CatLibrary.IAnimal.Name nameWithType: IAnimal.Name - uid: CatLibrary.ICat name: ICat - href: api/CatLibrary.ICat.html + href: api/CatLibrary.ICat.yml commentId: T:CatLibrary.ICat fullName: CatLibrary.ICat nameWithType: ICat - uid: CatLibrary.ICat.eat name: eat - href: api/CatLibrary.ICat.html#CatLibrary_ICat_eat + href: api/CatLibrary.ICat.yml commentId: E:CatLibrary.ICat.eat fullName: CatLibrary.ICat.eat nameWithType: ICat.eat - uid: CatLibrary.ICatExtension name: ICatExtension - href: api/CatLibrary.ICatExtension.html + href: api/CatLibrary.ICatExtension.yml commentId: T:CatLibrary.ICatExtension fullName: CatLibrary.ICatExtension nameWithType: ICatExtension - uid: CatLibrary.ICatExtension.Play(CatLibrary.ICat,CatLibrary.Core.ContainersRefType.ColorType) name: Play(ICat, ColorType) - href: api/CatLibrary.ICatExtension.html#CatLibrary_ICatExtension_Play_CatLibrary_ICat_CatLibrary_Core_ContainersRefType_ColorType_ + href: api/CatLibrary.ICatExtension.yml commentId: M:CatLibrary.ICatExtension.Play(CatLibrary.ICat,CatLibrary.Core.ContainersRefType.ColorType) fullName: CatLibrary.ICatExtension.Play(CatLibrary.ICat, CatLibrary.Core.ContainersRefType.ColorType) nameWithType: ICatExtension.Play(ICat, ContainersRefType.ColorType) - uid: CatLibrary.ICatExtension.Play* name: Play - href: api/CatLibrary.ICatExtension.html#CatLibrary_ICatExtension_Play_ + href: api/CatLibrary.ICatExtension.yml commentId: Overload:CatLibrary.ICatExtension.Play isSpec: "True" fullName: CatLibrary.ICatExtension.Play nameWithType: ICatExtension.Play - uid: CatLibrary.ICatExtension.Sleep(CatLibrary.ICat,System.Int64) name: Sleep(ICat, long) - href: api/CatLibrary.ICatExtension.html#CatLibrary_ICatExtension_Sleep_CatLibrary_ICat_System_Int64_ + href: api/CatLibrary.ICatExtension.yml commentId: M:CatLibrary.ICatExtension.Sleep(CatLibrary.ICat,System.Int64) name.vb: Sleep(ICat, Long) fullName: CatLibrary.ICatExtension.Sleep(CatLibrary.ICat, long) @@ -1411,14 +1411,14 @@ references: nameWithType.vb: ICatExtension.Sleep(ICat, Long) - uid: CatLibrary.ICatExtension.Sleep* name: Sleep - href: api/CatLibrary.ICatExtension.html#CatLibrary_ICatExtension_Sleep_ + href: api/CatLibrary.ICatExtension.yml commentId: Overload:CatLibrary.ICatExtension.Sleep isSpec: "True" fullName: CatLibrary.ICatExtension.Sleep nameWithType: ICatExtension.Sleep - uid: CatLibrary.MRefDelegate`3 name: MRefDelegate - href: api/CatLibrary.MRefDelegate-3.html + href: api/CatLibrary.MRefDelegate-3.yml commentId: T:CatLibrary.MRefDelegate`3 name.vb: MRefDelegate(Of K, T, L) fullName: CatLibrary.MRefDelegate @@ -1427,19 +1427,19 @@ references: nameWithType.vb: MRefDelegate(Of K, T, L) - uid: CatLibrary.MRefNormalDelegate name: MRefNormalDelegate - href: api/CatLibrary.MRefNormalDelegate.html + href: api/CatLibrary.MRefNormalDelegate.yml commentId: T:CatLibrary.MRefNormalDelegate fullName: CatLibrary.MRefNormalDelegate nameWithType: MRefNormalDelegate - uid: CatLibrary.Tom name: Tom - href: api/CatLibrary.Tom.html + href: api/CatLibrary.Tom.yml commentId: T:CatLibrary.Tom fullName: CatLibrary.Tom nameWithType: Tom - uid: CatLibrary.Tom.TomMethod(CatLibrary.Complex{CatLibrary.TomFromBaseClass,CatLibrary.TomFromBaseClass},System.Tuple{System.String,CatLibrary.Tom}) name: TomMethod(Complex, Tuple) - href: api/CatLibrary.Tom.html#CatLibrary_Tom_TomMethod_CatLibrary_Complex_CatLibrary_TomFromBaseClass_CatLibrary_TomFromBaseClass__System_Tuple_System_String_CatLibrary_Tom__ + href: api/CatLibrary.Tom.yml commentId: M:CatLibrary.Tom.TomMethod(CatLibrary.Complex{CatLibrary.TomFromBaseClass,CatLibrary.TomFromBaseClass},System.Tuple{System.String,CatLibrary.Tom}) name.vb: TomMethod(Complex(Of TomFromBaseClass, TomFromBaseClass), Tuple(Of String, Tom)) fullName: CatLibrary.Tom.TomMethod(CatLibrary.Complex, System.Tuple) @@ -1448,20 +1448,20 @@ references: nameWithType.vb: Tom.TomMethod(Complex(Of TomFromBaseClass, TomFromBaseClass), Tuple(Of String, Tom)) - uid: CatLibrary.Tom.TomMethod* name: TomMethod - href: api/CatLibrary.Tom.html#CatLibrary_Tom_TomMethod_ + href: api/CatLibrary.Tom.yml commentId: Overload:CatLibrary.Tom.TomMethod isSpec: "True" fullName: CatLibrary.Tom.TomMethod nameWithType: Tom.TomMethod - uid: CatLibrary.TomFromBaseClass name: TomFromBaseClass - href: api/CatLibrary.TomFromBaseClass.html + href: api/CatLibrary.TomFromBaseClass.yml commentId: T:CatLibrary.TomFromBaseClass fullName: CatLibrary.TomFromBaseClass nameWithType: TomFromBaseClass - uid: CatLibrary.TomFromBaseClass.#ctor(System.Int32) name: TomFromBaseClass(int) - href: api/CatLibrary.TomFromBaseClass.html#CatLibrary_TomFromBaseClass__ctor_System_Int32_ + href: api/CatLibrary.TomFromBaseClass.yml commentId: M:CatLibrary.TomFromBaseClass.#ctor(System.Int32) name.vb: New(Integer) fullName: CatLibrary.TomFromBaseClass.TomFromBaseClass(int) @@ -1470,7 +1470,7 @@ references: nameWithType.vb: TomFromBaseClass.New(Integer) - uid: CatLibrary.TomFromBaseClass.#ctor* name: TomFromBaseClass - href: api/CatLibrary.TomFromBaseClass.html#CatLibrary_TomFromBaseClass__ctor_ + href: api/CatLibrary.TomFromBaseClass.yml commentId: Overload:CatLibrary.TomFromBaseClass.#ctor isSpec: "True" name.vb: New @@ -1480,133 +1480,133 @@ references: nameWithType.vb: TomFromBaseClass.New - uid: MRef.Demo.Enumeration name: MRef.Demo.Enumeration - href: api/MRef.Demo.Enumeration.html + href: api/MRef.Demo.Enumeration.yml commentId: N:MRef.Demo.Enumeration fullName: MRef.Demo.Enumeration nameWithType: MRef.Demo.Enumeration - uid: MRef.Demo.Enumeration.ColorType name: ColorType - href: api/MRef.Demo.Enumeration.ColorType.html + href: api/MRef.Demo.Enumeration.ColorType.yml commentId: T:MRef.Demo.Enumeration.ColorType fullName: MRef.Demo.Enumeration.ColorType nameWithType: ColorType - uid: MRef.Demo.Enumeration.ColorType.Blue name: Blue - href: api/MRef.Demo.Enumeration.ColorType.html#MRef_Demo_Enumeration_ColorType_Blue + href: api/MRef.Demo.Enumeration.ColorType.yml commentId: F:MRef.Demo.Enumeration.ColorType.Blue fullName: MRef.Demo.Enumeration.ColorType.Blue nameWithType: ColorType.Blue - uid: MRef.Demo.Enumeration.ColorType.Red name: Red - href: api/MRef.Demo.Enumeration.ColorType.html#MRef_Demo_Enumeration_ColorType_Red + href: api/MRef.Demo.Enumeration.ColorType.yml commentId: F:MRef.Demo.Enumeration.ColorType.Red fullName: MRef.Demo.Enumeration.ColorType.Red nameWithType: ColorType.Red - uid: MRef.Demo.Enumeration.ColorType.Yellow name: Yellow - href: api/MRef.Demo.Enumeration.ColorType.html#MRef_Demo_Enumeration_ColorType_Yellow + href: api/MRef.Demo.Enumeration.ColorType.yml commentId: F:MRef.Demo.Enumeration.ColorType.Yellow fullName: MRef.Demo.Enumeration.ColorType.Yellow nameWithType: ColorType.Yellow - uid: graph.windows.net/myorganization/Contacts/1.6 name: Contacts - href: restapi/contacts.html + href: restapi/contacts.json - uid: graph.windows.net/myorganization/Contacts/1.6/delete contact name: delete contact - href: restapi/contacts.html#graph_windows_net_myorganization_Contacts_1_6_delete_contact + href: restapi/contacts.json - uid: graph.windows.net/myorganization/Contacts/1.6/delete contact manager by id name: delete contact manager by id - href: restapi/contacts.html#graph_windows_net_myorganization_Contacts_1_6_delete_contact_manager_by_id + href: restapi/contacts.json - uid: graph.windows.net/myorganization/Contacts/1.6/get contact by id name: get contact by id - href: restapi/contacts.html#graph_windows_net_myorganization_Contacts_1_6_get_contact_by_id + href: restapi/contacts.json - uid: graph.windows.net/myorganization/Contacts/1.6/get contact direct reports links name: get contact direct reports links - href: restapi/contacts.html#graph_windows_net_myorganization_Contacts_1_6_get_contact_direct_reports_links + href: restapi/contacts.json - uid: graph.windows.net/myorganization/Contacts/1.6/get contact manager link name: get contact manager link - href: restapi/contacts.html#graph_windows_net_myorganization_Contacts_1_6_get_contact_manager_link + href: restapi/contacts.json - uid: graph.windows.net/myorganization/Contacts/1.6/get contact memberOf links name: get contact memberOf links - href: restapi/contacts.html#graph_windows_net_myorganization_Contacts_1_6_get_contact_memberOf_links + href: restapi/contacts.json - uid: graph.windows.net/myorganization/Contacts/1.6/get contacts name: get contacts - href: restapi/contacts.html#graph_windows_net_myorganization_Contacts_1_6_get_contacts + href: restapi/contacts.json - uid: graph.windows.net/myorganization/Contacts/1.6/update contact name: update contact - href: restapi/contacts.html#graph_windows_net_myorganization_Contacts_1_6_update_contact + href: restapi/contacts.json - uid: graph.windows.net/myorganization/Contacts/1.6/update contact manager name: update contact manager - href: restapi/contacts.html#graph_windows_net_myorganization_Contacts_1_6_update_contact_manager + href: restapi/contacts.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0 name: Swagger Petstore - href: restapi/petstore.html + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/addPet name: addPet - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_addPet + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/createUser name: createUser - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUser + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/createUsersWithArrayInput name: createUsersWithArrayInput - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/createUsersWithListInput name: createUsersWithListInput - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithListInput + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/deleteOrder name: deleteOrder - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/deletePet name: deletePet - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deletePet + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/deleteUser name: deleteUser - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/findPetsByStatus name: findPetsByStatus - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByStatus + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/findPetsByTags name: findPetsByTags - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/getInventory name: getInventory - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/getOrderById name: getOrderById - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getOrderById + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/getPetById name: getPetById - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getPetById + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/getUserByName name: getUserByName - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getUserByName + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/loginUser name: loginUser - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/logoutUser name: logoutUser - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_logoutUser + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/placeOrder name: placeOrder - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_placeOrder + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/tag/pet name: pet - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_tag_pet + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/tag/store name: store - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_tag_store + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/tag/user name: user - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_tag_user + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/updatePet name: updatePet - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/updatePetWithForm name: updatePetWithForm - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/updateUser name: updateUser - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser + href: restapi/petstore.json - uid: petstore.swagger.io/v2/Swagger Petstore/1.0.0/uploadFile name: uploadFile - href: restapi/petstore.html#petstore_swagger_io_v2_Swagger_Petstore_1_0_0_uploadFile + href: restapi/petstore.json